2012-06-08 06:39:10 +08:00
|
|
|
; RUN: llc < %s -march=x86-64 | FileCheck %s
|
2007-04-11 13:02:57 +08:00
|
|
|
|
|
|
|
;; Integer absolute value, should produce something at least as good as:
|
2012-06-08 06:39:10 +08:00
|
|
|
;; movl %edi, %eax
|
|
|
|
;; negl %eax
|
|
|
|
;; cmovll %edi, %eax
|
2007-04-11 13:02:57 +08:00
|
|
|
;; ret
|
2012-06-08 06:39:10 +08:00
|
|
|
; rdar://10695237
|
2008-04-01 07:20:09 +08:00
|
|
|
define i32 @test(i32 %a) nounwind {
|
2013-07-14 04:38:47 +08:00
|
|
|
; CHECK-LABEL: test:
|
2012-06-08 06:39:10 +08:00
|
|
|
; CHECK: mov
|
|
|
|
; CHECK-NEXT: neg
|
|
|
|
; CHECK-NEXT: cmov
|
|
|
|
; CHECK-NEXT: ret
|
2007-04-11 13:02:57 +08:00
|
|
|
%tmp1neg = sub i32 0, %a
|
|
|
|
%b = icmp sgt i32 %a, -1
|
|
|
|
%abs = select i1 %b, i32 %a, i32 %tmp1neg
|
|
|
|
ret i32 %abs
|
|
|
|
}
|
|
|
|
|