[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.

llvm-svn: 302520
This commit is contained in:
Renato Golin 2017-05-09 12:36:50 +00:00
parent 5995802911
commit 94d6c8fb36
1 changed files with 2 additions and 1 deletions

View File

@ -172,7 +172,8 @@ bool DWARFVerifier::handleDebugInfo() {
}
}
}
verifyDebugInfoReferences();
// FIXME: This introduced unexplained failures on buildbots (PR32972)
//verifyDebugInfoReferences();
return NumDebugInfoErrors == 0;
}