filecheckize
authorChris Lattner <sabre@nondot.org>
Thu, 26 Aug 2010 21:51:41 +0000 (21:51 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Aug 2010 21:51:41 +0000 (21:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112225 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/bitcast.ll

index 4e9dfbb53b4964f819d04b216780ff5603b0d6ab..88fa9a43e54f85aed5f531b1c945ecb833c0261a 100644 (file)
@@ -1,14 +1,15 @@
-; RUN: opt < %s -instcombine -S | grep {ret i32 0}
-; PR4487
-
-; Bitcasts between vectors and scalars are valid, despite being ill-advised.
+; RUN: opt < %s -instcombine -S | FileCheck %s
 
-define i32 @test(i64 %a) {
-bb20:
+; Bitcasts between vectors and scalars are valid.
+; PR4487
+define i32 @test1(i64 %a) {
         %t1 = bitcast i64 %a to <2 x i32>
         %t2 = bitcast i64 %a to <2 x i32>
         %t3 = xor <2 x i32> %t1, %t2
         %t4 = extractelement <2 x i32> %t3, i32 0
         ret i32 %t4
+        
+; CHECK: @test1
+; CHECK: ret i32 0
 }