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 | 6e68cd96b2c76c80bfff07e8121ba19691ec1276 (patch) | |
tree | f97a4cf04c01009e2b0378c123bd462b80912091 /tools/llvm-mc/AsmParser.h | |
parent | a4b048668418f74dfb2399421dc54db1d999c9cd (diff) |
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
Diffstat (limited to 'tools/llvm-mc/AsmParser.h')
-rw-r--r-- | tools/llvm-mc/AsmParser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvm-mc/AsmParser.h b/tools/llvm-mc/AsmParser.h index 1bb7ca2832..62aa4ef44c 100644 --- a/tools/llvm-mc/AsmParser.h +++ b/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" |