Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / GlobalISel / legalize-fconstant.mir
blob6906ff9f5b34904be9db484bb8562788374d8264
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=tahiti -O0 -run-pass=legalizer %s -o - | FileCheck -check-prefix=GCN  %s
3 # RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=fiji -O0 -run-pass=legalizer %s -o - | FileCheck -check-prefix=GCN  %s
5 ---
6 name: test_fconstant_s32
7 body: |
8   bb.0:
10     ; GCN-LABEL: name: test_fconstant_s32
11     ; GCN: [[C:%[0-9]+]]:_(s32) = G_FCONSTANT float 1.000000e+00
12     ; GCN-NEXT: $vgpr0 = COPY [[C]](s32)
13     %0:_(s32) = G_FCONSTANT float 1.0
14     $vgpr0 = COPY %0
15 ...
16 ---
17 name: test_fconstant_s64
18 body: |
19   bb.0:
21     ; GCN-LABEL: name: test_fconstant_s64
22     ; GCN: [[C:%[0-9]+]]:_(s64) = G_FCONSTANT double 1.000000e+00
23     ; GCN-NEXT: $vgpr0_vgpr1 = COPY [[C]](s64)
24     %0:_(s64) = G_FCONSTANT double 1.0
25     $vgpr0_vgpr1 = COPY %0
26 ...
28 ---
29 name: test_fconstant_s16
30 body: |
31   bb.0:
33     ; GCN-LABEL: name: test_fconstant_s16
34     ; GCN: [[C:%[0-9]+]]:_(s16) = G_FCONSTANT half 0xH3C00
35     ; GCN-NEXT: [[ANYEXT:%[0-9]+]]:_(s32) = G_ANYEXT [[C]](s16)
36     ; GCN-NEXT: $vgpr0 = COPY [[ANYEXT]](s32)
37     %0:_(s16) = G_FCONSTANT half 1.0
38     %1:_(s32) = G_ANYEXT %0
39     $vgpr0 = COPY %1
40 ...