Deleted Added
full compact
X86Subtarget.cpp (199989) X86Subtarget.cpp (200581)
1//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 353 unchanged lines hidden (view full) ---

362}
363
364bool X86Subtarget::enablePostRAScheduler(
365 CodeGenOpt::Level OptLevel,
366 TargetSubtarget::AntiDepBreakMode& Mode,
367 RegClassVector& CriticalPathRCs) const {
368 Mode = TargetSubtarget::ANTIDEP_CRITICAL;
369 CriticalPathRCs.clear();
1//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 353 unchanged lines hidden (view full) ---

362}
363
364bool X86Subtarget::enablePostRAScheduler(
365 CodeGenOpt::Level OptLevel,
366 TargetSubtarget::AntiDepBreakMode& Mode,
367 RegClassVector& CriticalPathRCs) const {
368 Mode = TargetSubtarget::ANTIDEP_CRITICAL;
369 CriticalPathRCs.clear();
370 return OptLevel >= CodeGenOpt::Default;
370 return OptLevel >= CodeGenOpt::Aggressive;
371}
371}