[llvm-commits] CVS: llvm/lib/CodeGen/IfConversion.cpp
Evan Cheng
evan.cheng at apple.com
Thu Jun 14 14:26:30 PDT 2007
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);
More information about the llvm-commits
mailing list