Fix a missing newline in the dwarf output code.

llvm-svn: 85684
This commit is contained in:
Dan Gohman 2009-10-31 20:59:09 +00:00
parent 170a56f135
commit ae6bb61594
1 changed files with 1 additions and 0 deletions

View File

@ -1368,6 +1368,7 @@ void AsmPrinter::processDebugLoc(const MachineInstr *MI,
unsigned L = DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,
CurDLT.Scope);
printLabel(L);
O << '\n';
#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
DW->SetDbgScopeBeginLabels(MI, L);
#endif