diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-16 06:14:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-16 06:14:39 +0000 |
commit | 8e25e2d801bb1119cea080c7c860adcfbf85d65d (patch) | |
tree | 0dd48770cc0b11e59fc5e5d79994070c76e82a90 /include | |
parent | c2b443a698493d3f2fe6ce2d8e7798a659eb3aae (diff) | |
download | external_llvm-8e25e2d801bb1119cea080c7c860adcfbf85d65d.zip external_llvm-8e25e2d801bb1119cea080c7c860adcfbf85d65d.tar.gz external_llvm-8e25e2d801bb1119cea080c7c860adcfbf85d65d.tar.bz2 |
implement .include in the lexer/parser instead of passing it into the streamer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75896 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCStreamer.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h index 8daa246..b8f1b26 100644 --- a/include/llvm/MC/MCStreamer.h +++ b/include/llvm/MC/MCStreamer.h @@ -160,12 +160,6 @@ namespace llvm { /// @param AbortReason - The reason assembly is terminated, if non-NULL. virtual void AbortAssembly(const char *AbortReason) = 0; - /// SwitchInputAssemblyFile - Assemble the contents of the specified file in - /// @param FileName at this point in the assembly. - /// - /// @param FileName - The file to assemble at this point - virtual void SwitchInputAssemblyFile(const char *FileName) = 0; - /// DumpSymbolsandMacros - Dump to the specified file in @param FileName all /// symbols and macros at this point in the assembly. /// |