rename test.
authorChris Lattner <sabre@nondot.org>
Sun, 14 Nov 2010 07:03:49 +0000 (07:03 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 14 Nov 2010 07:03:49 +0000 (07:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119033 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/ConstProp/bitcast.ll [new file with mode: 0644]
test/Transforms/ConstProp/bitcast2.ll [deleted file]

diff --git a/test/Transforms/ConstProp/bitcast.ll b/test/Transforms/ConstProp/bitcast.ll
new file mode 100644 (file)
index 0000000..53239c7
--- /dev/null
@@ -0,0 +1,10 @@
+; RUN: opt < %s -constprop -S | FileCheck %s
+; PR2165
+
+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>
+}
+
diff --git a/test/Transforms/ConstProp/bitcast2.ll b/test/Transforms/ConstProp/bitcast2.ll
deleted file mode 100644 (file)
index 53239c7..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: opt < %s -constprop -S | FileCheck %s
-; PR2165
-
-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>
-}
-