From a6140a14444da1aa104f6ab7c40c5c920552f474 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 26 Aug 2010 21:51:41 +0000 Subject: [PATCH] filecheckize git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112225 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/bitcast.ll | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/test/Transforms/InstCombine/bitcast.ll b/test/Transforms/InstCombine/bitcast.ll index 4e9dfbb53b4..88fa9a43e54 100644 --- a/test/Transforms/InstCombine/bitcast.ll +++ b/test/Transforms/InstCombine/bitcast.ll @@ -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 } -- 2.34.1