diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-05-19 20:19:50 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-05-19 20:19:50 +0000 |
commit | 738e920edfaca3d2b6d6d140b432e29719722a17 (patch) | |
tree | 32ad5d40e9909017d89c446832ce7f46d10877b5 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | e11cdf8cc8132ada1f9e622a9aef243e5c4b92a1 (diff) | |
download | bcm5719-llvm-738e920edfaca3d2b6d6d140b432e29719722a17.tar.gz bcm5719-llvm-738e920edfaca3d2b6d6d140b432e29719722a17.zip |
Code refactoring: pull SchedPreference enum from TargetLowering.h to TargetMachine.h and put it in its own namespace.
llvm-svn: 104147
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-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 94a57572645..44a80d3362d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -543,7 +543,7 @@ TargetLowering::TargetLowering(const TargetMachine &tm, ExceptionPointerRegister = 0; ExceptionSelectorRegister = 0; BooleanContents = UndefinedBooleanContent; - SchedPreferenceInfo = SchedulingForLatency; + SchedPreferenceInfo = Sched::Latency; JumpBufSize = 0; JumpBufAlignment = 0; IfCvtBlockSizeLimit = 2; |