diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2011-02-22 17:30:05 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2011-02-22 17:30:05 +0000 |
commit | 4c3ab58c4766bb48526523b000fa54186c97877e (patch) | |
tree | b34e89da7a0a38afc4cb357465a1a83c7b262d93 /lib/Target/X86 | |
parent | a04663ecb25b42b6cc588d81675d37ff8b78bfe8 (diff) | |
download | external_llvm-4c3ab58c4766bb48526523b000fa54186c97877e.zip external_llvm-4c3ab58c4766bb48526523b000fa54186c97877e.tar.gz external_llvm-4c3ab58c4766bb48526523b000fa54186c97877e.tar.bz2 |
Stack alignment is 16 bytes on FreeBSD/i386 too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126226 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86')
-rw-r--r-- | lib/Target/X86/X86Subtarget.cpp | 7 | ||||
-rw-r--r-- | lib/Target/X86/X86Subtarget.h | 1 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index 3f55144..1ee7312 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/lib/Target/X86/X86Subtarget.cpp @@ -342,9 +342,10 @@ X86Subtarget::X86Subtarget(const std::string &TT, const std::string &FS, assert((!Is64Bit || HasX86_64) && "64-bit code requested on a subtarget that doesn't support it!"); - // Stack alignment is 16 bytes on Darwin, Linux and Solaris (both 32 and 64 - // bit) and for all 64-bit targets. - if (isTargetDarwin() || isTargetLinux() || isTargetSolaris() || Is64Bit) + // Stack alignment is 16 bytes on Darwin, FreeBSD, Linux and Solaris (both + // 32 and 64 bit) and for all 64-bit targets. + if (isTargetDarwin() || isTargetFreeBSD() || isTargetLinux() || + isTargetSolaris() || Is64Bit) stackAlignment = 16; if (StackAlignment) diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index a1e47a2..0a62a02 100644 --- a/lib/Target/X86/X86Subtarget.h +++ b/lib/Target/X86/X86Subtarget.h @@ -166,6 +166,7 @@ public: bool hasVectorUAMem() const { return HasVectorUAMem; } bool isTargetDarwin() const { return TargetTriple.getOS() == Triple::Darwin; } + bool isTargetFreeBSD() const { return TargetTriple.getOS() == Triple::FreeBSD; } bool isTargetSolaris() const { return TargetTriple.getOS() == Triple::Solaris; } // ELF is a reasonably sane default and the only other X86 targets we |