diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-14 00:30:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-14 00:30:06 +0000 |
commit | 47db29a4050a22d2df4eb3ee78286b4fd4645cef (patch) | |
tree | b98b22d83a4b9068f9371b54d494b86278e8d18b /llvm/lib | |
parent | 3218e0eed57420e7b256b0c2e217d466d325b99d (diff) | |
download | bcm5719-llvm-47db29a4050a22d2df4eb3ee78286b4fd4645cef.tar.gz bcm5719-llvm-47db29a4050a22d2df4eb3ee78286b4fd4645cef.zip |
disable this pass for now, it's causing issues
llvm-svn: 30951
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/BranchFolding.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp index 7b5ee6cbaeb..806f54da785 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; |