summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_shuffle-7.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-08-29 03:07:47 +0000
committerChris Lattner <sabre@nondot.org>2010-08-29 03:07:47 +0000
commitc19b9477c9152e5a4ebaf6431e50d16669813384 (patch)
tree97257fc86845f87e924d665f1a4c0b01816f87e3 /test/CodeGen/X86/vec_shuffle-7.ll
parent2c4b30ebca87b4578fcf7a45a0bb9dbe956f1ec0 (diff)
downloadllvm-c19b9477c9152e5a4ebaf6431e50d16669813384.tar.gz
llvm-c19b9477c9152e5a4ebaf6431e50d16669813384.tar.bz2
llvm-c19b9477c9152e5a4ebaf6431e50d16669813384.tar.xz
add some nounwind's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112396 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_shuffle-7.ll')
-rw-r--r--test/CodeGen/X86/vec_shuffle-7.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/vec_shuffle-7.ll b/test/CodeGen/X86/vec_shuffle-7.ll
index 64bd6a3c83..a68f3747b5 100644
--- a/test/CodeGen/X86/vec_shuffle-7.ll
+++ b/test/CodeGen/X86/vec_shuffle-7.ll
@@ -2,10 +2,10 @@
; RUN: grep pxor %t | count 1
; RUN: not grep shufps %t
-define void @test() {
+define void @test() nounwind {
bitcast <4 x i32> zeroinitializer to <4 x float> ; <<4 x float>>:1 [#uses=1]
shufflevector <4 x float> %1, <4 x float> zeroinitializer, <4 x i32> zeroinitializer ; <<4 x float>>:2 [#uses=1]
store <4 x float> %2, <4 x float>* null
- unreachable
+ ret void
}