diff options
author | Dan Gohman <gohman@apple.com> | 2011-10-24 17:45:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2011-10-24 17:45:02 +0000 |
commit | 8c2d270ae8b460912633883f24346c0763373a56 (patch) | |
tree | 93fbeaa63083cb5a12fe4091f698fe296a361695 /lib/CodeGen/SelectionDAG | |
parent | 1028132b90a10a46c87b2ee2ad0156e2f9143c25 (diff) | |
download | external_llvm-8c2d270ae8b460912633883f24346c0763373a56.zip external_llvm-8c2d270ae8b460912633883f24346c0763373a56.tar.gz external_llvm-8c2d270ae8b460912633883f24346c0763373a56.tar.bz2 |
Change the default scheduler from Latency to ILP, since Latency
is going away.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142810 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 57cc398..f1807ca 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -610,7 +610,7 @@ TargetLowering::TargetLowering(const TargetMachine &tm, ExceptionSelectorRegister = 0; BooleanContents = UndefinedBooleanContent; BooleanVectorContents = UndefinedBooleanContent; - SchedPreferenceInfo = Sched::Latency; + SchedPreferenceInfo = Sched::ILP; JumpBufSize = 0; JumpBufAlignment = 0; MinFunctionAlignment = 0; |