diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-19 09:16:38 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-19 09:16:38 +0000 |
commit | 4dd82f6aaa483ef11bd74795c81cfc30b52821af (patch) | |
tree | 8ebc08e44924287722d5aabaa3d9cc81ec2346cb /utils | |
parent | 249e1e4e2742977a4e3a5ba336b83168a4af43c0 (diff) |
Print out a new label only if the debug location *tuple* is different. The debug
locations may change, but the tuples may be the same.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/AsmWriterEmitter.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/utils/TableGen/AsmWriterEmitter.cpp b/utils/TableGen/AsmWriterEmitter.cpp index 6d2fa5578c..4f810c1303 100644 --- a/utils/TableGen/AsmWriterEmitter.cpp +++ b/utils/TableGen/AsmWriterEmitter.cpp @@ -642,13 +642,16 @@ void AsmWriterEmitter::run(std::ostream &O) { O << " if (TAI->doesSupportDebugInformation()) {\n" << " const MachineFunction *MF = MI->getParent()->getParent();\n" - << " static DebugLoc PrevDL = DebugLoc::getUnknownLoc();\n" << " DebugLoc CurDL = MI->getDebugLoc();\n\n" - << " if (!CurDL.isUnknown() && PrevDL != CurDL) {\n" - << " DebugLocTuple DLT = MF->getDebugLocTuple(CurDL);\n" - << " printLabel(DW->RecordSourceLine(DLT.Line, DLT.Col, DLT.Src));\n" - << " }\n\n" - << " PrevDL = CurDL;\n" + << " if (!CurDL.isUnknown()) {\n" + << " static DebugLocTuple PrevDLT(~0U, ~0U, ~0U);\n" + << " DebugLocTuple CurDLT = MF->getDebugLocTuple(CurDL);\n\n" + << " if (PrevDLT != CurDLT) {\n" + << " printLabel(DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,\n" + << " CurDLT.Src));\n" + << " PrevDLT = CurDLT;\n" + << " }\n" + << " }\n" << " }\n\n"; O << " if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {\n" |