mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 23:48:49 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
532 B
LLVM
18 lines
532 B
LLVM
; 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
|
|
}
|