You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
295 B
23 lines
295 B
7 months ago
|
; RUN: llc -mtriple=thumb-eabi %s -o - | FileCheck %s
|
||
|
|
||
|
define i1 @t1(i64 %x) {
|
||
|
%B = icmp slt i64 %x, 0
|
||
|
ret i1 %B
|
||
|
}
|
||
|
|
||
|
define i1 @t2(i64 %x) {
|
||
|
%tmp = icmp ult i64 %x, 4294967296
|
||
|
ret i1 %tmp
|
||
|
}
|
||
|
|
||
|
define i1 @t3(i32 %x) {
|
||
|
%tmp = icmp ugt i32 %x, -1
|
||
|
ret i1 %tmp
|
||
|
}
|
||
|
|
||
|
; CHECK: cmp
|
||
|
; CHECK-NOT: cmp
|
||
|
|
||
|
|
||
|
|