diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2013-03-29 01:51:04 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-03-29 01:51:04 +0000 |
commit | 8c0b9b03fe0198504c0c5645b4331aa23fb16b04 (patch) | |
tree | 7a94cb79ee865514c8c0c8c89f9fbfcaadcf15d0 /lib/Target/Mips/MipsFrameLowering.h | |
parent | 1cbd4017566ea2fcb1a7cd605f412322da879e34 (diff) | |
download | external_llvm-8c0b9b03fe0198504c0c5645b4331aa23fb16b04.tar.gz external_llvm-8c0b9b03fe0198504c0c5645b4331aa23fb16b04.tar.bz2 external_llvm-8c0b9b03fe0198504c0c5645b4331aa23fb16b04.zip |
[mips] Add parameter Alignment to MipsFrameLowering's constructor.
No functionality changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178326 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsFrameLowering.h')
-rw-r--r-- | lib/Target/Mips/MipsFrameLowering.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/Mips/MipsFrameLowering.h b/lib/Target/Mips/MipsFrameLowering.h index 14268d2130..6a5f79d0df 100644 --- a/lib/Target/Mips/MipsFrameLowering.h +++ b/lib/Target/Mips/MipsFrameLowering.h @@ -26,9 +26,8 @@ protected: const MipsSubtarget &STI; public: - explicit MipsFrameLowering(const MipsSubtarget &sti) - : TargetFrameLowering(StackGrowsDown, sti.hasMips64() ? 16 : 8, 0, - sti.hasMips64() ? 16 : 8), STI(sti) {} + explicit MipsFrameLowering(const MipsSubtarget &sti, unsigned Alignment) + : TargetFrameLowering(StackGrowsDown, Alignment, 0, Alignment), STI(sti) {} static const MipsFrameLowering *create(MipsTargetMachine &TM, const MipsSubtarget &ST); |