[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / CodeGen / RISCV / GlobalISel / instruction-select / int-ptr-cast-rv32.mir
bloba8ec01e47e7f994b2434b6f0ffb98fb2bf889d06
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=riscv32 -run-pass=instruction-select -simplify-mir \
3 # RUN: -verify-machineinstrs %s -o - | FileCheck %s
5 ---
6 name:            ptrtoint_s32
7 legalized:       true
8 regBankSelected: true
9 tracksRegLiveness: true
10 body:             |
11   bb.0.entry:
12     liveins: $x10, $x11
14     ; CHECK-LABEL: name: ptrtoint_s32
15     ; CHECK: liveins: $x10, $x11
16     ; CHECK-NEXT: {{  $}}
17     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr = COPY $x10
18     ; CHECK-NEXT: $x10 = COPY [[COPY]]
19     ; CHECK-NEXT: PseudoRET implicit $x10
20     %0:gprb(p0) = COPY $x10
21     %1:gprb(s32) = G_PTRTOINT %0(p0)
22     $x10 = COPY %1(s32)
23     PseudoRET implicit $x10
25 ...
26 ---
27 name:            inttoptr_s32
28 legalized:       true
29 regBankSelected: true
30 tracksRegLiveness: true
31 body:             |
32   bb.0.entry:
33     liveins: $x10, $x11
35     ; CHECK-LABEL: name: inttoptr_s32
36     ; CHECK: liveins: $x10, $x11
37     ; CHECK-NEXT: {{  $}}
38     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr = COPY $x10
39     ; CHECK-NEXT: $x10 = COPY [[COPY]]
40     ; CHECK-NEXT: PseudoRET implicit $x10
41     %0:gprb(s32) = COPY $x10
42     %1:gprb(p0) = G_INTTOPTR %0(s32)
43     $x10 = COPY %1(p0)
44     PseudoRET implicit $x10
46 ...