From 47db29a4050a22d2df4eb3ee78286b4fd4645cef Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 14 Oct 2006 00:30:06 +0000 Subject: [PATCH] disable this pass for now, it's causing issues llvm-svn: 30951 --- llvm/lib/CodeGen/BranchFolding.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp index 7b5ee6cbaeb2..806f54da7856 100644 --- a/llvm/lib/CodeGen/BranchFolding.cpp +++ b/llvm/lib/CodeGen/BranchFolding.cpp @@ -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;