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