From: Chris Lattner Date: Sun, 14 Nov 2010 07:03:38 +0000 (+0000) Subject: filecheckize, remove an old and useless test X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2fe9b6a125451f6f813d10552681d123fcf5e9a3;p=oota-llvm.git filecheckize, remove an old and useless test git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119032 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/ConstProp/bitcast.ll b/test/Transforms/ConstProp/bitcast.ll deleted file mode 100644 index bf943c971f3..00000000000 --- a/test/Transforms/ConstProp/bitcast.ll +++ /dev/null @@ -1,2 +0,0 @@ -; RUN: llvm-as < %s | llvm-dis | grep 0x36A0000000000000 -@A = global float 0x36A0000000000000 ; [#uses=0] diff --git a/test/Transforms/ConstProp/bitcast2.ll b/test/Transforms/ConstProp/bitcast2.ll index 5c5eab1879c..53239c7e4fe 100644 --- a/test/Transforms/ConstProp/bitcast2.ll +++ b/test/Transforms/ConstProp/bitcast2.ll @@ -1,8 +1,10 @@ -; RUN: opt < %s -instcombine -S | not grep bitcast +; RUN: opt < %s -constprop -S | FileCheck %s ; PR2165 -define <1 x i64> @test() { +define <1 x i64> @test1() { %A = bitcast i64 63 to <1 x i64> ret <1 x i64> %A +; CHECK: @test1 +; CHECK: ret <1 x i64> }