mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-21 12:38:45 +00:00
ARM: Remove old testing option.
Pre-regalloc frame allocation and referencing has been on by default for ages. No need for the testing option that disables it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169931 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
48aa2cf76d
commit
c8cd8aa9d8
@ -44,10 +44,6 @@
|
|||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
static cl::opt<bool>
|
|
||||||
EnableLocalStackAlloc("enable-local-stack-alloc", cl::init(true), cl::Hidden,
|
|
||||||
cl::desc("Enable pre-regalloc stack frame index allocation"));
|
|
||||||
|
|
||||||
ARMBaseRegisterInfo::ARMBaseRegisterInfo(const ARMBaseInstrInfo &tii,
|
ARMBaseRegisterInfo::ARMBaseRegisterInfo(const ARMBaseInstrInfo &tii,
|
||||||
const ARMSubtarget &sti)
|
const ARMSubtarget &sti)
|
||||||
: ARMGenRegisterInfo(ARM::LR), TII(tii), STI(sti),
|
: ARMGenRegisterInfo(ARM::LR), TII(tii), STI(sti),
|
||||||
@ -401,7 +397,7 @@ requiresFrameIndexScavenging(const MachineFunction &MF) const {
|
|||||||
|
|
||||||
bool ARMBaseRegisterInfo::
|
bool ARMBaseRegisterInfo::
|
||||||
requiresVirtualBaseRegisters(const MachineFunction &MF) const {
|
requiresVirtualBaseRegisters(const MachineFunction &MF) const {
|
||||||
return EnableLocalStackAlloc;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user