[llvm-commits] CVS: llvm/lib/CodeGen/BranchFolding.cpp
Chris Lattner
sabre at nondot.org
Fri Oct 13 17:30:20 PDT 2006
Changes in directory llvm/lib/CodeGen:
BranchFolding.cpp updated: 1.10 -> 1.11
---
Log message:
disable this pass for now, it's causing issues
---
Diffs of the changes: (+4 -0)
BranchFolding.cpp | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/lib/CodeGen/BranchFolding.cpp
diff -u llvm/lib/CodeGen/BranchFolding.cpp:1.10 llvm/lib/CodeGen/BranchFolding.cpp:1.11
--- llvm/lib/CodeGen/BranchFolding.cpp:1.10 Fri Oct 13 19:21:48 2006
+++ llvm/lib/CodeGen/BranchFolding.cpp Fri Oct 13 19:30:06 2006
@@ -40,6 +40,10 @@
TII = MF.getTarget().getInstrInfo();
if (!TII) return false;
+
+ // DISABLED FOR NOW.
+ return false;
+
//MF.dump();
bool EverMadeChange = false;
More information about the llvm-commits
mailing list