mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
mi-sched: Load clustering is a bit to expensive to enable unconditionally.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189990 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2753,7 +2753,7 @@ static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C) {
|
||||
// data and pass it to later mutations. Have a single mutation that gathers
|
||||
// the interesting nodes in one pass.
|
||||
DAG->addMutation(new CopyConstrain(DAG->TII, DAG->TRI));
|
||||
if (EnableLoadCluster)
|
||||
if (EnableLoadCluster && DAG->TII->enableClusterLoads())
|
||||
DAG->addMutation(new LoadClusterMutation(DAG->TII, DAG->TRI));
|
||||
if (EnableMacroFusion)
|
||||
DAG->addMutation(new MacroFusion(DAG->TII));
|
||||
|
Reference in New Issue
Block a user