diff options
author | Kevin Enderby <enderby@apple.com> | 2012-01-10 21:12:34 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2012-01-10 21:12:34 +0000 |
commit | f7d77069ca47cab8f629e1cbe71265f035281329 (patch) | |
tree | eb75f67c57aaaf12de67c88d092bb3e287e7c590 /llvm/lib/MC/MCParser/AsmParser.cpp | |
parent | 74ac7d50a1379d2167109c10a7ae693501fea7e4 (diff) | |
download | bcm5719-llvm-f7d77069ca47cab8f629e1cbe71265f035281329.tar.gz bcm5719-llvm-f7d77069ca47cab8f629e1cbe71265f035281329.zip |
This is the matching change for the data structure name changes for the
functional change in r147860 to use DW_TAG_label's instead TAG_subprogram's.
This only changes names and updates comments. No functional change.
llvm-svn: 147877
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(). |