mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
correctly set LocalAreaOffset of TargetFrameInfo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29589 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
049ccbe941
commit
a1ab92d8b7
@ -93,11 +93,6 @@ ARMRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II) const {
|
||||
|
||||
unsigned StackSize = MF.getFrameInfo()->getStackSize();
|
||||
|
||||
//<hack>
|
||||
if (Offset < 0)
|
||||
Offset -= 4;
|
||||
//</hack>
|
||||
|
||||
Offset += StackSize;
|
||||
|
||||
assert (Offset >= 0);
|
||||
|
@ -33,7 +33,7 @@ namespace {
|
||||
///
|
||||
ARMTargetMachine::ARMTargetMachine(const Module &M, const std::string &FS)
|
||||
: TargetMachine("ARM"), DataLayout("E-p:32:32"),
|
||||
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0) {
|
||||
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -4) {
|
||||
}
|
||||
|
||||
unsigned ARMTargetMachine::getModuleMatchQuality(const Module &M) {
|
||||
|
Loading…
Reference in New Issue
Block a user