filecheckize, remove an old and useless test
authorChris Lattner <sabre@nondot.org>
Sun, 14 Nov 2010 07:03:38 +0000 (07:03 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 14 Nov 2010 07:03:38 +0000 (07:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119032 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/ConstProp/bitcast.ll [deleted file]
test/Transforms/ConstProp/bitcast2.ll

diff --git a/test/Transforms/ConstProp/bitcast.ll b/test/Transforms/ConstProp/bitcast.ll
deleted file mode 100644 (file)
index bf943c9..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-; RUN: llvm-as < %s | llvm-dis | grep 0x36A0000000000000
-@A = global float 0x36A0000000000000            ; <float*> [#uses=0]
index 5c5eab1879c3ab4daa26af3e6963d33a7920258e..53239c7e4fe08e80bc9a2f360a1fd807a24b2372 100644 (file)
@@ -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> <i64 63>
 }