Skip to content
This repository was archived by the owner on Sep 2, 2018. It is now read-only.

Commit a72a0d6

Browse files
committed
[MC] Fix comma typo in .loc parsing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285214 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 72c8379 commit a72a0d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/MC/MCParser/AsmParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3228,7 +3228,7 @@ bool AsmParser::parseDirectiveLoc() {
32283228
return false;
32293229
};
32303230

3231-
if (parseMany(parseLocOp))
3231+
if (parseMany(parseLocOp, false /*hasComma*/))
32323232
return true;
32333233

32343234
getStreamer().EmitDwarfLocDirective(FileNumber, LineNumber, ColumnPos, Flags,

0 commit comments

Comments
 (0)