diff options
author | Devang Patel <dpatel@apple.com> | 2008-10-01 23:18:38 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-10-01 23:18:38 +0000 |
commit | 4ae641f4d12c60ee1aaca5e42b6de231c6a02c40 (patch) | |
tree | 76f97c15558ecdeb6cb91a6282320c169d52dae9 /test/CodeGen/X86 | |
parent | dc756858f92a397ed30362ba8251fec56479735f (diff) | |
download | external_llvm-4ae641f4d12c60ee1aaca5e42b6de231c6a02c40.zip external_llvm-4ae641f4d12c60ee1aaca5e42b6de231c6a02c40.tar.gz external_llvm-4ae641f4d12c60ee1aaca5e42b6de231c6a02c40.tar.bz2 |
Remove OptimizeForSize global. Use function attribute optsize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r-- | test/CodeGen/X86/vec_shuffle-23.ll | 1 | ||||
-rw-r--r-- | test/CodeGen/X86/vec_shuffle-24.ll | 17 |
2 files changed, 17 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_shuffle-23.ll b/test/CodeGen/X86/vec_shuffle-23.ll index 34d84ef..7e8aa5d 100644 --- a/test/CodeGen/X86/vec_shuffle-23.ll +++ b/test/CodeGen/X86/vec_shuffle-23.ll @@ -1,6 +1,5 @@ ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep punpck ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep pshufd -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -optimize-size | grep punpck define i32 @t() nounwind { entry: diff --git a/test/CodeGen/X86/vec_shuffle-24.ll b/test/CodeGen/X86/vec_shuffle-24.ll new file mode 100644 index 0000000..170ba35 --- /dev/null +++ b/test/CodeGen/X86/vec_shuffle-24.ll @@ -0,0 +1,17 @@ +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep punpck + +define i32 @t() nounwind optsize { +entry: + %a = alloca <4 x i32> ; <<4 x i32>*> [#uses=2] + %b = alloca <4 x i32> ; <<4 x i32>*> [#uses=5] + volatile store <4 x i32> < i32 0, i32 1, i32 2, i32 3 >, <4 x i32>* %a + %tmp = load <4 x i32>* %a ; <<4 x i32>> [#uses=1] + store <4 x i32> %tmp, <4 x i32>* %b + %tmp1 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1] + %tmp2 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1] + %punpckldq = shufflevector <4 x i32> %tmp1, <4 x i32> %tmp2, <4 x i32> < i32 0, i32 4, i32 1, i32 5 > ; <<4 x i32>> [#uses=1] + store <4 x i32> %punpckldq, <4 x i32>* %b + %tmp3 = load <4 x i32>* %b ; <<4 x i32>> [#uses=1] + %result = extractelement <4 x i32> %tmp3, i32 0 ; <i32> [#uses=1] + ret i32 %result +} |