diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2013-11-11 21:49:03 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-11-11 21:49:03 +0000 |
commit | 8f1caeb0e187250cf96bdee3013c7a6f16ac2c6f (patch) | |
tree | 975b1aca9b7244106d2bc36dd97f7d16df2e2ffc /llvm/lib | |
parent | da0b753035f28f78dc6a30b5c554b07ca50c9506 (diff) | |
download | bcm5719-llvm-8f1caeb0e187250cf96bdee3013c7a6f16ac2c6f.tar.gz bcm5719-llvm-8f1caeb0e187250cf96bdee3013c7a6f16ac2c6f.zip |
[mips] Partially revert r193641. Stack alignment should not be determined by
the floating point register mode.
llvm-svn: 194423
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Mips/MipsSubtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsSubtarget.h b/llvm/lib/Target/Mips/MipsSubtarget.h index 7c175537a72..6b2ab1238b8 100644 --- a/llvm/lib/Target/Mips/MipsSubtarget.h +++ b/llvm/lib/Target/Mips/MipsSubtarget.h @@ -217,7 +217,7 @@ public: // static bool useConstantIslands(); - unsigned stackAlignment() const { return isFP64bit() ? 16 : 8; } + unsigned stackAlignment() const { return hasMips64() ? 16 : 8; } // Grab MipsRegInfo object const MipsReginfo &getMReginfo() const { return MRI; } |