2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -march=x86-64 -stats |& \
|
2011-03-02 02:08:17 +01:00
|
|
|
; RUN: grep {5 .*Number of machine instrs printed}
|
2007-04-11 07:02:57 +02:00
|
|
|
|
|
|
|
;; Integer absolute value, should produce something at least as good as:
|
2011-03-02 02:08:17 +01:00
|
|
|
;; movl %edi, %ecx
|
|
|
|
;; sarl $31, %ecx
|
|
|
|
;; leal (%rdi,%rcx), %eax
|
|
|
|
;; xorl %ecx, %eax
|
2007-04-11 07:02:57 +02:00
|
|
|
;; ret
|
2008-04-01 01:20:09 +02:00
|
|
|
define i32 @test(i32 %a) nounwind {
|
2007-04-11 07:02:57 +02:00
|
|
|
%tmp1neg = sub i32 0, %a
|
|
|
|
%b = icmp sgt i32 %a, -1
|
|
|
|
%abs = select i1 %b, i32 %a, i32 %tmp1neg
|
|
|
|
ret i32 %abs
|
|
|
|
}
|
|
|
|
|