Fix typo.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2007-06-14 21:26:08 +00:00
parent c101e95cb6
commit b7c908bb81

View File

@ -383,7 +383,7 @@ void IfConverter::ScanInstructions(BBInfo &BBI) {
return;
// First analyze the end of BB branches.
BBI.TrueBB = BBI.FalseBB;
BBI.TrueBB = BBI.FalseBB = NULL;
BBI.BrCond.clear();
BBI.IsBrAnalyzable =
!TII->AnalyzeBranch(*BBI.BB, BBI.TrueBB, BBI.FalseBB, BBI.BrCond);