diff options
author | Kevin Enderby <enderby@apple.com> | 2009-07-14 23:21:55 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2009-07-14 23:21:55 +0000 |
commit | d1ea5393c916f08f059dbf363b0e2f91488daea0 (patch) | |
tree | 899c8f0dfaa3c7f3d7b1959243db947ba294c36b /llvm/tools/llvm-mc/AsmParser.h | |
parent | 9a797db199d1b619d9845e3f1211c4c29efc4858 (diff) | |
download | bcm5719-llvm-d1ea5393c916f08f059dbf363b0e2f91488daea0.tar.gz bcm5719-llvm-d1ea5393c916f08f059dbf363b0e2f91488daea0.zip |
Added llvm-mc support for parsing the .include directive.
llvm-svn: 75711
Diffstat (limited to 'llvm/tools/llvm-mc/AsmParser.h')
-rw-r--r-- | llvm/tools/llvm-mc/AsmParser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mc/AsmParser.h b/llvm/tools/llvm-mc/AsmParser.h index 7d756376c50..1bb7ca2832d 100644 --- a/llvm/tools/llvm-mc/AsmParser.h +++ b/llvm/tools/llvm-mc/AsmParser.h @@ -119,6 +119,7 @@ private: bool ParseDirectiveDarwinSubsectionsViaSymbols(); bool ParseDirectiveAbort(); // ".abort" + bool ParseDirectiveInclude(); // ".include" }; } // end namespace llvm |