diff options
| author | Tim Northover <tnorthover@apple.com> | 2016-08-26 17:46:19 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2016-08-26 17:46:19 +0000 |
| commit | 30bd36e3fc17dcc05a9cfc30f24eb714ba8e9a01 (patch) | |
| tree | 0cef0caeaf76534824753bcca161ab74072744f6 /llvm/test | |
| parent | 051b8ad3d915d01cd61115f70a67aa1c6a89594d (diff) | |
| download | bcm5719-llvm-30bd36e3fc17dcc05a9cfc30f24eb714ba8e9a01.tar.gz bcm5719-llvm-30bd36e3fc17dcc05a9cfc30f24eb714ba8e9a01.zip | |
GlobalISel: mark G_FCMP legal on float & double.
llvm-svn: 279844
Diffstat (limited to 'llvm/test')
| -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 +... |

