Trying to fix NDEBUG build after r289764

llvm-svn: 289766
This commit is contained in:
Hal Finkel 2016-12-15 05:33:19 +00:00
parent 39fed399e1
commit 34f9d6ac11
1 changed files with 2 additions and 0 deletions

View File

@ -1597,7 +1597,9 @@ void MachineBlockPlacement::buildCFGChains() {
<< getBlockName(BB) << " -> " << getBlockName(NextBB)
<< "\n");
Chain->merge(NextBB, nullptr);
#ifndef NDEBUG
BlocksWithUnanalyzableExits.insert(&*BB);
#endif
FI = NextFI;
BB = NextBB;
}