mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-03 15:26:18 +00:00
Restore minor deletion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70892 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -650,12 +650,12 @@ void AsmWriterEmitter::run(std::ostream &O) {
|
||||
O << "\";\n\n";
|
||||
|
||||
O << " if (TAI->doesSupportDebugInformation() &&\n"
|
||||
<< " DW->ShouldEmitDwarfDebug() && OptLevel != CodeGenOpt::None) {\n"
|
||||
<< " DW->ShouldEmitDwarfDebug()) {\n"
|
||||
<< " DebugLoc CurDL = MI->getDebugLoc();\n\n"
|
||||
<< " if (!CurDL.isUnknown()) {\n"
|
||||
<< " static DebugLocTuple PrevDLT(0, ~0U, ~0U);\n"
|
||||
<< " DebugLocTuple CurDLT = MF->getDebugLocTuple(CurDL);\n\n"
|
||||
<< " if (PrevDLT.CompileUnit != 0 && PrevDLT != CurDLT)\n"
|
||||
<< " if (CurDLT.CompileUnit != 0 && PrevDLT != CurDLT)\n"
|
||||
<< " printLabel(DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,\n"
|
||||
<< " DICompileUnit(CurDLT.CompileUnit)));\n\n"
|
||||
<< " PrevDLT = CurDLT;\n"
|
||||
|
Reference in New Issue
Block a user