Added llvm-mc support for parsing the .dump and .load directives.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75786 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Kevin Enderby
2009-07-15 15:30:11 +00:00
parent a4b0486684
commit 6e68cd96b2
5 changed files with 63 additions and 0 deletions

View File

@@ -166,6 +166,18 @@ namespace llvm {
/// @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.
///
/// @param FileName - The file to dump the symbols and macros into.
virtual void DumpSymbolsandMacros(const char *FileName) = 0;
/// LoadSymbolsandMacros - Load from the specified file in @param FileName
/// symbols and macros into the assembler at this point in the assembly.
///
/// @param FileName - The file to load the symbols and macros from.
virtual void LoadSymbolsandMacros(const char *FileName) = 0;
/// @}
/// @name Generating Data
/// @{