1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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 27c6ce0f4a
commit 777d1a3ae9

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;
}