diff options
author | Kevin Enderby <enderby@apple.com> | 2009-07-15 15:30:11 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2009-07-15 15:30:11 +0000 |
commit | 09ea5709a2d96c472cf5e10ead9881746f9c1681 (patch) | |
tree | 82978ed9a6467d9435833fdf4583f43a351d995a /llvm/tools/llvm-mc/AsmParser.h | |
parent | 9ad1594fe01508bb54cfbfa46d30a27ca00da474 (diff) | |
download | bcm5719-llvm-09ea5709a2d96c472cf5e10ead9881746f9c1681.tar.gz bcm5719-llvm-09ea5709a2d96c472cf5e10ead9881746f9c1681.zip |
Added llvm-mc support for parsing the .dump and .load directives.
llvm-svn: 75786
Diffstat (limited to 'llvm/tools/llvm-mc/AsmParser.h')
-rw-r--r-- | llvm/tools/llvm-mc/AsmParser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mc/AsmParser.h b/llvm/tools/llvm-mc/AsmParser.h index 1bb7ca2832d..62aa4ef44c0 100644 --- a/llvm/tools/llvm-mc/AsmParser.h +++ b/llvm/tools/llvm-mc/AsmParser.h @@ -117,6 +117,8 @@ private: // Darwin specific ".subsections_via_symbols" bool ParseDirectiveDarwinSubsectionsViaSymbols(); + // Darwin specific .dump and .load + bool ParseDirectiveDarwinDumpOrLoad(bool IsDump); bool ParseDirectiveAbort(); // ".abort" bool ParseDirectiveInclude(); // ".include" |