diff options
author | Dale Johannesen <dalej@apple.com> | 2008-02-09 19:04:25 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-02-09 19:04:25 +0000 |
commit | b3c4eb46d62db357918a777e6bb61c2b9d46565a (patch) | |
tree | 8b78be427e53b471a833f08a5f642d12e332ece9 /test/CodeGen | |
parent | 3913187bf6135e6a71260c65eed664095c8f9ce9 (diff) | |
download | external_llvm-b3c4eb46d62db357918a777e6bb61c2b9d46565a.zip external_llvm-b3c4eb46d62db357918a777e6bb61c2b9d46565a.tar.gz external_llvm-b3c4eb46d62db357918a777e6bb61c2b9d46565a.tar.bz2 |
Alignment of struct containing vectors depends on
whether SSE is present, on Darwin anyway. Make it
explicit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46909 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/byval7.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/byval7.ll b/test/CodeGen/X86/byval7.ll index 54210c8..4199bf0 100644 --- a/test/CodeGen/X86/byval7.ll +++ b/test/CodeGen/X86/byval7.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep add | grep 16 +; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep add | grep 16 %struct.S = type { <2 x i64> } |