[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / GlobalISel / x86-legalize-GV.mir
blobd4f785dfee8c287ceb4e33c01abc9cffec3f9ee9
1 # RUN: llc -mtriple=i386-linux-gnu   -run-pass=legalizer %s -o - | FileCheck %s --check-prefix=ALL --check-prefix=X32
2 --- |
4   @g_int = global i32 0, align 4
6   define i32* @test_global_ptrv() {
7   entry:
8     ret i32* @g_int
9   }
10 ...
11 ---
12 name:            test_global_ptrv
13 # ALL-LABEL: name:  test_global_ptrv
14 alignment:       16
15 legalized:       false
16 regBankSelected: false
17 # ALL:      registers:
18 # ALL-NEXT:   - { id: 0, class: _, preferred-register: '' }
19 registers:
20   - { id: 0, class: _, preferred-register: '' }
21 # ALL:          %0:_(p0) = G_GLOBAL_VALUE @g_int
22 # ALL-NEXT:     $eax = COPY %0(p0)
23 # ALL-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 ...