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 | c32af340fc9d58dfec668858c3dd880d3d066d92 (patch) | |
tree | 365dc3cfd1d1c999e601210bbb5a3f77f1760d19 /llvm/lib/CodeGen | |
parent | 28f5fb9843b6058a966a535f107403f75a4e23ee (diff) | |
download | bcm5719-llvm-c32af340fc9d58dfec668858c3dd880d3d066d92.tar.gz bcm5719-llvm-c32af340fc9d58dfec668858c3dd880d3d066d92.zip |
Change the default scheduler from Latency to ILP, since Latency
is going away.
llvm-svn: 142810
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 57cc398f406..f1807cad33d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/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; |