diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-15 21:33:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-15 21:33:36 +0000 |
commit | 9b63ceeadac097648662cc79383ed24e2146a61b (patch) | |
tree | e48fdf91cc8f911e549a095cc3820bc57d191f69 /test/CodeGen | |
parent | c58ef0185bbd70386367285afbf8ca3ee2fca30f (diff) | |
download | external_llvm-9b63ceeadac097648662cc79383ed24e2146a61b.zip external_llvm-9b63ceeadac097648662cc79383ed24e2146a61b.tar.gz external_llvm-9b63ceeadac097648662cc79383ed24e2146a61b.tar.bz2 |
this test isn't testing what it thought it was
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36088 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/2005-08-30-RegAllocAliasProblem.ll | 17 |
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 eef09d8..0000000 --- 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 -} |