forked from OSchip/llvm-project
Devang points out that we need an assertion here.
llvm-svn: 37097
This commit is contained in:
parent
c4f5ac8383
commit
35fc2119b0
|
@ -141,6 +141,8 @@ void IfConverter::AnalyzeBlock(MachineBasicBlock *BB) {
|
|||
|
||||
if (!BBI.FBB)
|
||||
BBI.FBB = findFalseBlock(BB, BBI.TBB);
|
||||
assert(BBI.FBB && "Expected to find the fallthrough block!");
|
||||
|
||||
AnalyzeBlock(BBI.FBB);
|
||||
BBInfo &FBBI = BBAnalysis[BBI.FBB->getNumber()];
|
||||
if (FBBI.Kind != ICNotClassfied)
|
||||
|
|
Loading…
Reference in New Issue