summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-05-21 00:04:55 +0000
committerBill Wendling <isanbard@gmail.com>2009-05-21 00:04:55 +0000
commitf99bd3a82ba2a4565922666261bf089b1d4307ed (patch)
tree716188776df6d49cf3119e1cb1a3662f9648a7d3 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
parentd0fefbafd103c52964a3abd96f929917a8c1e847 (diff)
downloadbcm5719-llvm-f99bd3a82ba2a4565922666261bf089b1d4307ed.tar.gz
bcm5719-llvm-f99bd3a82ba2a4565922666261bf089b1d4307ed.zip
Temporarily revert r72191. It was causing an assert during llvm-gcc
bootstrapping. llvm-svn: 72200
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 438ba035ba0..45462da0d26 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1311,7 +1311,7 @@ void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
void AsmPrinter::processDebugLoc(DebugLoc DL) {
if (TAI->doesSupportDebugInformation() && DW->ShouldEmitDwarfDebug()) {
if (!DL.isUnknown()) {
- static DebugLocTuple PrevDLT(0, DebugScope::getInvalid(), ~0U, ~0U);
+ static DebugLocTuple PrevDLT(0, ~0U, ~0U);
DebugLocTuple CurDLT = MF->getDebugLocTuple(DL);
if (CurDLT.CompileUnit != 0 && PrevDLT != CurDLT)
OpenPOWER on IntegriCloud