diff options
author | Hans Wennborg <hans@hanshq.net> | 2011-06-18 13:51:54 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2011-06-18 13:51:54 +0000 |
commit | 5cc6491f50d0598715d87c69793bfdb2df7cda6f (patch) | |
tree | 21f4b41981a59b34d2e75f7172f7e9b285c80072 | |
parent | 22a54c1cd711afccd4558374918d12a939e1cca5 (diff) |
MC: Allow .common as alias for .comm assembler directive. PR10116.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133349 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/MC/MCParser/AsmParser.cpp | 2 | ||||
-rw-r--r-- | test/MC/AsmParser/directive_comm.s | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/MC/MCParser/AsmParser.cpp b/lib/MC/MCParser/AsmParser.cpp index bbd6635108..7b62db2e69 100644 --- a/lib/MC/MCParser/AsmParser.cpp +++ b/lib/MC/MCParser/AsmParser.cpp @@ -1146,7 +1146,7 @@ bool AsmParser::ParseStatement() { if (IDVal == ".weak_def_can_be_hidden") return ParseDirectiveSymbolAttribute(MCSA_WeakDefAutoPrivate); - if (IDVal == ".comm") + if (IDVal == ".comm" || IDVal == ".common") return ParseDirectiveComm(/*IsLocal=*/false); if (IDVal == ".lcomm") return ParseDirectiveComm(/*IsLocal=*/true); diff --git a/test/MC/AsmParser/directive_comm.s b/test/MC/AsmParser/directive_comm.s index 6cc79371de..5e60ab7570 100644 --- a/test/MC/AsmParser/directive_comm.s +++ b/test/MC/AsmParser/directive_comm.s @@ -3,6 +3,8 @@ # CHECK: TEST0: # CHECK: .comm a,6,2 # CHECK: .comm b,8 +# CHECK: .comm c,8 TEST0: .comm a, 4+2, 2 .comm b,8 + .common c,8 |