diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-07 20:30:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-07 20:30:46 +0000 |
commit | a1e11f530ee287ccce8ce1cd236159fb58b81e83 (patch) | |
tree | 3372607d1515156212540f111049d99f79d16f0a /llvm/tools/llvm-mc/AsmParser.h | |
parent | 86be854fa869f4c292e6b261d0ce1bf5d27b495e (diff) | |
download | bcm5719-llvm-a1e11f530ee287ccce8ce1cd236159fb58b81e83.tar.gz bcm5719-llvm-a1e11f530ee287ccce8ce1cd236159fb58b81e83.zip |
Implement parsing support for the .comm directive. Patch by
Kevin Enderby!
llvm-svn: 74944
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 333b284eac9..bafdfb76a0e 100644 --- a/llvm/tools/llvm-mc/AsmParser.h +++ b/llvm/tools/llvm-mc/AsmParser.h @@ -109,6 +109,8 @@ private: /// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which /// accepts a single symbol (which should be a label or an external). bool ParseDirectiveSymbolAttribute(MCStreamer::SymbolAttr Attr); + + bool ParseDirectiveComm(); // ".comm" }; |