mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
ac1b7ad93f
Shows up rarely for 64-bit arithmetic, more frequently for the compare patterns added in r325323. Differential Revision: https://reviews.llvm.org/D53848 llvm-svn: 345782
26 lines
436 B
LLVM
26 lines
436 B
LLVM
; RUN: llc -mtriple=thumb-eabi < %s | FileCheck %s
|
|
|
|
define i1 @t1(i64 %x) {
|
|
; CHECK-LABEL: t1:
|
|
; CHECK: lsrs r0, r1, #31
|
|
%B = icmp slt i64 %x, 0
|
|
ret i1 %B
|
|
}
|
|
|
|
define i1 @t2(i64 %x) {
|
|
; CHECK-LABEL: t2:
|
|
; CHECK: rsbs r0, r1, #0
|
|
; CHECK: adcs r0, r1
|
|
%tmp = icmp ult i64 %x, 4294967296
|
|
ret i1 %tmp
|
|
}
|
|
|
|
define i1 @t3(i32 %x) {
|
|
; CHECK-LABEL: t3:
|
|
; CHECK: movs r0, #0
|
|
%tmp = icmp ugt i32 %x, -1
|
|
ret i1 %tmp
|
|
}
|
|
|
|
; CHECK-NOT: cmp
|