forked from OSchip/llvm-project
Temporarily disable the transformation. It's breaking 186.crafty in some configuration.
llvm-svn: 131235
This commit is contained in:
parent
9efe39ea38
commit
33469b2cae
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue