Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / GlobalISel / x86-legalize-GV.mir
blob61f9eb9a72874011e93ee14b2b14a4535ea97dfc
1 # RUN: llc -mtriple=i386-linux-gnu   -run-pass=legalizer %s -o - | FileCheck %s
2 --- |
4   @g_int = global i32 0, align 4
6   define ptr @test_global_ptrv() {
7   entry:
8     ret ptr @g_int
9   }
10 ...
11 ---
12 name:            test_global_ptrv
13 # CHECK-LABEL: name:  test_global_ptrv
14 alignment:       16
15 legalized:       false
16 regBankSelected: false
17 # CHECK:      registers:
18 # CHECK-NEXT:   - { id: 0, class: _, preferred-register: '' }
19 registers:
20   - { id: 0, class: _, preferred-register: '' }
21 # CHECK:          %0:_(p0) = G_GLOBAL_VALUE @g_int
22 # CHECK-NEXT:     $eax = COPY %0(p0)
23 # CHECK-NEXT:     RET 0, implicit $rax
24 body:             |
25   bb.1.entry:
26     %0(p0) = G_GLOBAL_VALUE @g_int
27     $eax = COPY %0(p0)
28     RET 0, implicit $rax
30 ...