disable this pass for now, it's causing issues
authorChris Lattner <sabre@nondot.org>
Sat, 14 Oct 2006 00:30:06 +0000 (00:30 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 14 Oct 2006 00:30:06 +0000 (00:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30951 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/BranchFolding.cpp

index 7b5ee6cbaeb2ac141b56f0ea22647e2f1b84652b..806f54da7856db3ac99785b6c3da60eaddf287d1 100644 (file)
@@ -40,6 +40,10 @@ bool BranchFolder::runOnMachineFunction(MachineFunction &MF) {
   TII = MF.getTarget().getInstrInfo();
   if (!TII) return false;
 
+  
+  // DISABLED FOR NOW.
+  return false;
+  
   //MF.dump();
   
   bool EverMadeChange = false;