aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll b/test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll
deleted file mode 100644
index eef09d8d73..0000000000
--- a/test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | not grep 'test.*AL' || \
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | not grep 'cmove.*EAX'
-
-; This testcase was compiling to:
-;
-; _pypy_simple5:
-; movl $13, %ecx
-; movl $12, %eax
-; movb 4(%esp), %al
-; testb %al, %al ;; clobber EAX!
-; cmove %ecx, %eax
-; ret
-
-int %pypy_simple5(bool %b_4787) {
- %retval = select bool %b_4787, int 12, int 13 ; <int> [#uses=1]
- ret int %retval
-}