X86 needs critical path anti-dependency breaking.

llvm-svn: 84931
This commit is contained in:
Evan Cheng 2009-10-23 05:57:35 +00:00
parent ca42a51dce
commit 8b86efefec
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ public:
/// at 'More' optimization level.
bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
TargetSubtarget::AntiDepBreakMode& mode) const {
mode = TargetSubtarget::ANTIDEP_NONE;
mode = TargetSubtarget::ANTIDEP_CRITICAL;
return OptLevel >= CodeGenOpt::Default;
}
};