[llvm] r302520 - [Dwarf] Disable reference verification for now (PR32972)

Renato Golin via llvm-commits llvm-commits at lists.llvm.org
Tue May 9 05:36:51 PDT 2017


Author: rengolin
Date: Tue May  9 07:36:50 2017
New Revision: 302520

URL: http://llvm.org/viewvc/llvm-project?rev=302520&view=rev
Log:
[Dwarf] Disable reference verification for now (PR32972)

There is no other explanation about why this only started happening
now, even though it crashes on old code (supposedly reachable from
here).

The only common factor between the failing bots is that they use GCC
(4.9 and 5.3) to compile Clang, while the others use Clang 3.8, but the
failure is while building the tests, as an assertion, on Clang.

Commenting it out for now in hope the bots will go back green, but we
should keep looking for the real cause, and update bugzilla.

Modified:
    llvm/trunk/lib/DebugInfo/DWARF/DWARFVerifier.cpp

Modified: llvm/trunk/lib/DebugInfo/DWARF/DWARFVerifier.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARF/DWARFVerifier.cpp?rev=302520&r1=302519&r2=302520&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARF/DWARFVerifier.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARF/DWARFVerifier.cpp Tue May  9 07:36:50 2017
@@ -172,7 +172,8 @@ bool DWARFVerifier::handleDebugInfo() {
       }
     }
   }
-  verifyDebugInfoReferences();
+  // FIXME: This introduced unexplained failures on buildbots (PR32972)
+  //verifyDebugInfoReferences();
   return NumDebugInfoErrors == 0;
 }
 




More information about the llvm-commits mailing list