diff options
Diffstat (limited to 'llvm/lib/MC/MCParser/AsmParser.cpp')
-rw-r--r-- | llvm/lib/MC/MCParser/AsmParser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp index 5a69bea2fe3..0c05c7ec1a2 100644 --- a/llvm/lib/MC/MCParser/AsmParser.cpp +++ b/llvm/lib/MC/MCParser/AsmParser.cpp @@ -1076,10 +1076,10 @@ bool AsmParser::ParseStatement() { Out.EmitLabel(Sym); // If we are generating dwarf for assembly source files then gather the - // info to make a dwarf subprogram entry for this label if needed. + // info to make a dwarf label entry for this label if needed. if (getContext().getGenDwarfForAssembly()) - MCGenDwarfSubprogramEntry::Make(Sym, &getStreamer(), getSourceManager(), - IDLoc); + MCGenDwarfLabelEntry::Make(Sym, &getStreamer(), getSourceManager(), + IDLoc); // Consume any end of statement token, if present, to avoid spurious // AddBlankLine calls(). |