diff options
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/AArch64/GlobalISel/legalize-fcmp.mir | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/legalize-fcmp.mir b/llvm/test/CodeGen/AArch64/GlobalISel/legalize-fcmp.mir new file mode 100644 index 00000000000..9a6e90bd58e --- /dev/null +++ b/llvm/test/CodeGen/AArch64/GlobalISel/legalize-fcmp.mir @@ -0,0 +1,35 @@ +# RUN: llc -O0 -run-pass=legalize-mir -global-isel %s -o - 2>&1 | FileCheck %s + +--- | + target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128" + target triple = "aarch64-apple-ios" + 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: _ } +body: | + bb.0.entry: + liveins: %x0, %x1, %x2, %x3 + %0(64) = COPY %x0 + %1(64) = COPY %x0 + + %2(8) = G_TRUNC { s32, s64 } %0 + %3(8) = G_TRUNC { s32, s64 } %1 + + ; CHECK: %4(1) = G_FCMP { s1, s64 } floatpred(oge), %0, %1 + %4(1) = G_FCMP { s1, s64 } floatpred(oge), %0, %1 + + ; CHECK: %5(1) = G_FCMP { s1, s32 } floatpred(uno), %2, %3 + %5(1) = G_FCMP { s1, s32 } floatpred(uno), %2, %3 +... |

