diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/sse-align-12.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/sse-align-12.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/sse-align-12.ll b/llvm/test/CodeGen/X86/sse-align-12.ll index 960a4f64500..7ff6b1e3ed3 100644 --- a/llvm/test/CodeGen/X86/sse-align-12.ll +++ b/llvm/test/CodeGen/X86/sse-align-12.ll @@ -4,8 +4,7 @@ ; RUN: llvm-as < %s | llc -march=x86-64 | grep pd | count 4 ; RUN: llvm-as < %s | llc -march=x86-64 | grep movup | count 4 -define <4 x float> @a(<4 x float>* %y) -{ +define <4 x float> @a(<4 x float>* %y) nounwind { %x = load <4 x float>* %y, align 4 %a = extractelement <4 x float> %x, i32 0 %b = extractelement <4 x float> %x, i32 1 @@ -17,8 +16,7 @@ define <4 x float> @a(<4 x float>* %y) %s = insertelement <4 x float> %r, float %a, i32 3 ret <4 x float> %s } -define <4 x float> @b(<4 x float>* %y, <4 x float> %z) -{ +define <4 x float> @b(<4 x float>* %y, <4 x float> %z) nounwind { %x = load <4 x float>* %y, align 4 %a = extractelement <4 x float> %x, i32 2 %b = extractelement <4 x float> %x, i32 3 |