From: Evan Cheng Date: Thu, 14 Jun 2007 21:26:08 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b7c908bb81fe4336f60c03802dade7c24a02e619;p=oota-llvm.git Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37577 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/IfConversion.cpp b/lib/CodeGen/IfConversion.cpp index 40a7143423e..87340d37005 100644 --- a/lib/CodeGen/IfConversion.cpp +++ b/lib/CodeGen/IfConversion.cpp @@ -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);