Changes in directory llvm/lib/CodeGen:

IfConversion.cpp updated: 1.47 -> 1.48
---
Log message:

Fix typo.

---
Diffs of the changes:  (+1 -1)

 IfConversion.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/IfConversion.cpp
diff -u llvm/lib/CodeGen/IfConversion.cpp:1.47 
llvm/lib/CodeGen/IfConversion.cpp:1.48
--- llvm/lib/CodeGen/IfConversion.cpp:1.47      Thu Jun 14 15:28:52 2007
+++ llvm/lib/CodeGen/IfConversion.cpp   Thu Jun 14 16:26:08 2007
@@ -383,7 +383,7 @@
     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);



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to