2012-06-07 22:39:10 +00:00
|
|
|
; RUN: llc < %s -march=x86-64 | FileCheck %s
|
2007-04-11 05:02:57 +00:00
|
|
|
|
|
|
|
;; Integer absolute value, should produce something at least as good as:
|
2012-06-07 22:39:10 +00:00
|
|
|
;; movl %edi, %eax
|
|
|
|
;; negl %eax
|
|
|
|
;; cmovll %edi, %eax
|
2007-04-11 05:02:57 +00:00
|
|
|
;; ret
|
2012-06-07 22:39:10 +00:00
|
|
|
; rdar://10695237
|
2008-03-31 23:20:09 +00:00
|
|
|
define i32 @test(i32 %a) nounwind {
|
2012-06-07 22:39:10 +00:00
|
|
|
; CHECK: test:
|
|
|
|
; CHECK: mov
|
|
|
|
; CHECK-NEXT: neg
|
|
|
|
; CHECK-NEXT: cmov
|
|
|
|
; CHECK-NEXT: ret
|
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
|
|
|
|
}
|
|
|
|
|