mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
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
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user