Temporarily disable the transformation. It's breaking 186.crafty in some configuration.

llvm-svn: 131235
This commit is contained in:
Evan Cheng 2011-05-12 18:44:58 +00:00
parent 9efe39ea38
commit 33469b2cae
1 changed files with 4 additions and 0 deletions

View File

@ -1354,6 +1354,10 @@ ReoptimizeBlock:
/// NOTE: This optimization does not update live-in information so it must be
/// run after all passes that require correct liveness information.
bool BranchFolder::HoistCommonCode(MachineFunction &MF) {
#if 1
// FIXME: Temporarily disabled.
return false;
#endif
bool MadeChange = false;
for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ) {
MachineBasicBlock *MBB = I++;