Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / ARM / GlobalISel / arm-legalize-casts.mir
blobc45bc3d5385d7573ecdfc171e8a34b566234fdf7
1 # RUN: llc -mtriple arm-- -run-pass=legalizer %s -o - | FileCheck %s
2 # RUN: llc -mtriple thumb-- -mattr=+v6t2 -run-pass=legalizer %s -o - | FileCheck %s
3 --- |
4   define void @test_inttoptr_s32() { ret void }
5   define void @test_ptrtoint_s32() { ret void }
6 ...
7 ---
8 name:            test_inttoptr_s32
9 # CHECK-LABEL: name: test_inttoptr_s32
10 legalized:       false
11 # CHECK: legalized: true
12 regBankSelected: false
13 selected:        false
14 tracksRegLiveness: true
15 registers:
16   - { id: 0, class: _ }
17   - { id: 1, class: _ }
18 body:             |
19   bb.0:
20     liveins: $r0
22     %0(s32) = COPY $r0
23     %1(p0) = G_INTTOPTR %0(s32)
24     ; G_INTTOPTR with s32 is legal, so we should find it unchanged in the output
25     ; CHECK: {{%[0-9]+}}:_(p0) = G_INTTOPTR {{%[0-9]+}}
26     $r0 = COPY %1(p0)
27     BX_RET 14, $noreg, implicit $r0
28 ...
29 ---
30 name:            test_ptrtoint_s32
31 # CHECK-LABEL: name: test_ptrtoint_s32
32 legalized:       false
33 # CHECK: legalized: true
34 regBankSelected: false
35 selected:        false
36 tracksRegLiveness: true
37 registers:
38   - { id: 0, class: _ }
39   - { id: 1, class: _ }
40 body:             |
41   bb.0:
42     liveins: $r0
44     %0(p0) = COPY $r0
45     %1(s32) = G_PTRTOINT %0(p0)
46     ; G_PTRTOINT with s32 is legal, so we should find it unchanged in the output
47     ; CHECK: {{%[0-9]+}}:_(s32) = G_PTRTOINT {{%[0-9]+}}
48     $r0 = COPY %1(s32)
49     BX_RET 14, $noreg, implicit $r0
50 ...