diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-11 04:24:50 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-11 04:24:50 +0000 |
commit | a4b069ce002a0978b0c9f8f206d730752ba4e137 (patch) | |
tree | d05c1bac02c756733435cbc945dcca9a0a55b60f /llvm/tools/llvm-mc/AsmParser.h | |
parent | 78696a70bfd3adf7ca191a3315fee648c27b6b77 (diff) | |
download | bcm5719-llvm-a4b069ce002a0978b0c9f8f206d730752ba4e137.tar.gz bcm5719-llvm-a4b069ce002a0978b0c9f8f206d730752ba4e137.zip |
llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these
yet (I'm not even sure what they do).
llvm-svn: 78639
Diffstat (limited to 'llvm/tools/llvm-mc/AsmParser.h')
-rw-r--r-- | llvm/tools/llvm-mc/AsmParser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvm-mc/AsmParser.h b/llvm/tools/llvm-mc/AsmParser.h index 646001ce7ac..55efa84bc7b 100644 --- a/llvm/tools/llvm-mc/AsmParser.h +++ b/llvm/tools/llvm-mc/AsmParser.h @@ -132,6 +132,9 @@ private: bool ParseDirectiveElse(SMLoc DirectiveLoc); // ".else" bool ParseDirectiveEndIf(SMLoc DirectiveLoc); // .endif + bool ParseDirectiveFile(SMLoc DirectiveLoc); // ".file" + bool ParseDirectiveLine(SMLoc DirectiveLoc); // ".line" + bool ParseDirectiveLoc(SMLoc DirectiveLoc); // ".loc" }; } // end namespace llvm |