2017-02-23 02:47:41 +08:00
|
|
|
# RUN: llc -O0 -run-pass=legalizer -global-isel %s -o - | FileCheck %s
|
2016-08-27 01:46:19 +08:00
|
|
|
|
|
|
|
--- |
|
|
|
|
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
|
2016-10-14 18:19:40 +08:00
|
|
|
target triple = "aarch64--"
|
2016-08-27 01:46:19 +08:00
|
|
|
define void @test_icmp() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
...
|
|
|
|
|
|
|
|
---
|
|
|
|
name: test_icmp
|
|
|
|
registers:
|
|
|
|
- { id: 0, class: _ }
|
|
|
|
- { id: 1, class: _ }
|
|
|
|
- { id: 2, class: _ }
|
|
|
|
- { id: 3, class: _ }
|
|
|
|
- { id: 4, class: _ }
|
|
|
|
- { id: 5, class: _ }
|
2017-08-01 01:00:16 +08:00
|
|
|
- { id: 6, class: _ }
|
|
|
|
- { id: 7, class: _ }
|
2016-08-27 01:46:19 +08:00
|
|
|
body: |
|
|
|
|
bb.0.entry:
|
|
|
|
liveins: %x0, %x1, %x2, %x3
|
2016-09-09 19:47:31 +08:00
|
|
|
%0(s64) = COPY %x0
|
|
|
|
%1(s64) = COPY %x0
|
2016-08-27 01:46:19 +08:00
|
|
|
|
2016-09-09 19:46:34 +08:00
|
|
|
%2(s32) = G_TRUNC %0
|
|
|
|
%3(s32) = G_TRUNC %1
|
2016-08-27 01:46:19 +08:00
|
|
|
|
2017-10-25 02:04:54 +08:00
|
|
|
; CHECK: [[CMP1:%[0-9]+]]:_(s32) = G_FCMP floatpred(oge), %0(s64), %1
|
|
|
|
; CHECK: [[TRUNC1:%[0-9]+]]:_(s1) = G_TRUNC [[CMP1]]
|
2017-08-01 01:00:16 +08:00
|
|
|
%4(s32) = G_FCMP floatpred(oge), %0, %1
|
|
|
|
%6(s1) = G_TRUNC %4(s32)
|
2016-08-27 01:46:19 +08:00
|
|
|
|
2017-10-25 02:04:54 +08:00
|
|
|
; CHECK: [[CMP2:%[0-9]+]]:_(s32) = G_FCMP floatpred(uno), %2(s32), %3
|
|
|
|
; CHECK: [[TRUNC2:%[0-9]+]]:_(s1) = G_TRUNC [[CMP2]]
|
2017-08-01 01:00:16 +08:00
|
|
|
%5(s32) = G_FCMP floatpred(uno), %2, %3
|
|
|
|
%7(s1) = G_TRUNC %5(s32)
|
2016-08-27 01:46:19 +08:00
|
|
|
...
|