From a9ce1c013026dea89ff1346db017c5b495dc4f77 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 15 Apr 2007 21:33:36 +0000 Subject: [PATCH] this test isn't testing what it thought it was llvm-svn: 36088 --- .../X86/2005-08-30-RegAllocAliasProblem.ll | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 llvm/test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll diff --git a/llvm/test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll b/llvm/test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll deleted file mode 100644 index eef09d8d73b1..000000000000 --- a/llvm/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 ; [#uses=1] - ret int %retval -}