At Nick Lewycky's request, rename this test with a more informative name.
authorDan Gohman <gohman@apple.com>
Mon, 26 Jan 2009 21:36:31 +0000 (21:36 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 26 Jan 2009 21:36:31 +0000 (21:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63042 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/dag-rauw-cse.ll [new file with mode: 0644]
test/CodeGen/X86/pr3018.ll [deleted file]

diff --git a/test/CodeGen/X86/dag-rauw-cse.ll b/test/CodeGen/X86/dag-rauw-cse.ll
new file mode 100644 (file)
index 0000000..ba84711
--- /dev/null
@@ -0,0 +1,9 @@
+; RUN: llvm-as < %s | llc -march=x86 | grep {orl       \$1}
+; PR3018
+
+define i32 @test(i32 %A) nounwind {
+  %B = or i32 %A, 1
+  %C = or i32 %B, 1
+  %D = and i32 %C, 7057
+  ret i32 %D
+}
diff --git a/test/CodeGen/X86/pr3018.ll b/test/CodeGen/X86/pr3018.ll
deleted file mode 100644 (file)
index ba84711..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep {orl       \$1}
-; PR3018
-
-define i32 @test(i32 %A) nounwind {
-  %B = or i32 %A, 1
-  %C = or i32 %B, 1
-  %D = and i32 %C, 7057
-  ret i32 %D
-}