mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 20:59:51 +00:00
Temporarily disable the transformation. It's breaking 186.crafty in some configuration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c154514e2d
commit
30adced41b
@ -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
Block a user