diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-06-14 21:26:08 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-06-14 21:26:08 +0000 |
commit | e08f0eefa6e12c99a1ec379e3b0b84f782438085 (patch) | |
tree | d480a9f0d265f8cd9a798efd13187940dbb10c4c /llvm/lib/CodeGen/IfConversion.cpp | |
parent | 4a4a8eb00e29e32d72dfa9489aade215a349a06d (diff) | |
download | bcm5719-llvm-e08f0eefa6e12c99a1ec379e3b0b84f782438085.tar.gz bcm5719-llvm-e08f0eefa6e12c99a1ec379e3b0b84f782438085.zip |
Fix typo.
llvm-svn: 37577
Diffstat (limited to 'llvm/lib/CodeGen/IfConversion.cpp')
-rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index 40a7143423e..87340d37005 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/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); |