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:
Akira Hatanaka 2012-08-02 18:15:13 +00:00
parent 804468916a
commit bddf83614a
2 changed files with 3 additions and 7 deletions

View File

@ -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;
};

View File

@ -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.