From: Dan Gohman Date: Mon, 26 Jan 2009 21:36:31 +0000 (+0000) Subject: At Nick Lewycky's request, rename this test with a more informative name. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4699934647c35a308deb33d9d5e4e811b78139ef;p=oota-llvm.git At Nick Lewycky's request, rename this test with a more informative name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63042 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/dag-rauw-cse.ll b/test/CodeGen/X86/dag-rauw-cse.ll new file mode 100644 index 00000000000..ba84711c03e --- /dev/null +++ b/test/CodeGen/X86/dag-rauw-cse.ll @@ -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 index ba84711c03e..00000000000 --- a/test/CodeGen/X86/pr3018.ll +++ /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 -}