mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
Set transient stack alignment in constructor of MipsFrameLowering and re-enable
test o32_cc_vararg.ll. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161189 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
804468916a
commit
bddf83614a
@ -27,9 +27,8 @@ protected:
|
||||
|
||||
public:
|
||||
explicit MipsFrameLowering(const MipsSubtarget &sti)
|
||||
: TargetFrameLowering(StackGrowsDown, sti.hasMips64() ? 16 : 8, 0),
|
||||
STI(sti) {
|
||||
}
|
||||
: TargetFrameLowering(StackGrowsDown, sti.hasMips64() ? 16 : 8, 0,
|
||||
sti.hasMips64() ? 16 : 8), STI(sti) {}
|
||||
|
||||
bool hasFP(const MachineFunction &MF) const;
|
||||
};
|
||||
|
@ -1,7 +1,4 @@
|
||||
; reenable when the correct value for TransientStackAlignment is set.
|
||||
; DISABLED: llc -march=mipsel -pre-RA-sched=source < %s | FileCheck %s
|
||||
; RUN: false
|
||||
; XFAIL: *
|
||||
; RUN: llc -march=mipsel -pre-RA-sched=source < %s | FileCheck %s
|
||||
|
||||
; All test functions do the same thing - they return the first variable
|
||||
; argument.
|
||||
|
Loading…
Reference in New Issue
Block a user