diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-08-01 21:42:05 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-08-01 21:42:05 +0000 |
commit | 61fc8d670f1e991804c2ab753e567981e60962cb (patch) | |
tree | 01bf0e1eba2709eb4608e1e00504425452f66a53 /test/CodeGen/X86/stack-align.ll | |
parent | 8cb1d81250ab0957f956146af7bfe62cdd0a9f3e (diff) | |
download | external_llvm-61fc8d670f1e991804c2ab753e567981e60962cb.zip external_llvm-61fc8d670f1e991804c2ab753e567981e60962cb.tar.gz external_llvm-61fc8d670f1e991804c2ab753e567981e60962cb.tar.bz2 |
Use function attributes to indicate that we don't want to realign the stack.
Function attributes are the future! So just query whether we want to realign the
stack directly from the function instead of through a random target options
structure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/stack-align.ll')
-rw-r--r-- | test/CodeGen/X86/stack-align.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/stack-align.ll b/test/CodeGen/X86/stack-align.ll index 2918a68..eafb7c2 100644 --- a/test/CodeGen/X86/stack-align.ll +++ b/test/CodeGen/X86/stack-align.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -relocation-model=static -realign-stack=1 -mcpu=yonah | FileCheck %s +; RUN: llc < %s -relocation-model=static -mcpu=yonah | FileCheck %s ; The double argument is at 4(esp) which is 16-byte aligned, allowing us to ; fold the load into the andpd. |