mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Fix generation of 'isa' and 'discriminator' keywords.
Summary: There should be a space before each of these two keywords to avoid generating invalid assembly files. NOTE: I could not find an obvious maintainers in CODE_OWNERS.TXT, but this seems related to debug info. Reviewers: echristo CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D2791 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201359 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -902,9 +902,9 @@ void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
|
||||
}
|
||||
|
||||
if (Isa)
|
||||
OS << "isa " << Isa;
|
||||
OS << " isa " << Isa;
|
||||
if (Discriminator)
|
||||
OS << "discriminator " << Discriminator;
|
||||
OS << " discriminator " << Discriminator;
|
||||
|
||||
if (IsVerboseAsm) {
|
||||
OS.PadToColumn(MAI->getCommentColumn());
|
||||
|
Reference in New Issue
Block a user