aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-mc/AsmParser.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-07 20:30:46 +0000
committerChris Lattner <sabre@nondot.org>2009-07-07 20:30:46 +0000
commit4e4db7adfc9858a8f77f841c7467bc6fcbb8110e (patch)
tree3ef227b9e607013736fca50b48e0f408703d4bef /tools/llvm-mc/AsmParser.h
parent74a77812d1785ad6c62226c52dcd4d129b3cdd0b (diff)
downloadexternal_llvm-4e4db7adfc9858a8f77f841c7467bc6fcbb8110e.zip
external_llvm-4e4db7adfc9858a8f77f841c7467bc6fcbb8110e.tar.gz
external_llvm-4e4db7adfc9858a8f77f841c7467bc6fcbb8110e.tar.bz2
Implement parsing support for the .comm directive. Patch by
Kevin Enderby! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-mc/AsmParser.h')
-rw-r--r--tools/llvm-mc/AsmParser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvm-mc/AsmParser.h b/tools/llvm-mc/AsmParser.h
index 333b284..bafdfb7 100644
--- a/tools/llvm-mc/AsmParser.h
+++ b/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"
};