summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/SystemZ/03-RetAddImmSubreg.ll
blob: 02352114953969dc58f5732ae517c4a50c9287ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
; RUN: llvm-as < %s | llc -march=systemz | grep ahi       | count 3
; RUN: llvm-as < %s | llc -march=systemz | grep afi       | count 3
; RUN: llvm-as < %s | llc -march=systemz | grep lgfr      | count 6
; RUN: llvm-as < %s | llc -march=systemz | grep llgfr     | count 4


define i32 @foo1(i32 %a, i32 %b) {
entry:
    %c = add i32 %a, 1
    ret i32 %c
}

define i32 @foo2(i32 %a, i32 %b) {
entry:
    %c = add i32 %a, 131072
    ret i32 %c
}

define i32 @foo3(i32 %a, i32 %b) zeroext {
entry:
    %c = add i32 %a, 1
    ret i32 %c
}

define i32 @foo4(i32 %a, i32 %b) zeroext {
entry:
    %c = add i32 %a, 131072
    ret i32 %c
}

define i32 @foo5(i32 %a, i32 %b) signext {
entry:
    %c = add i32 %a, 1
    ret i32 %c
}

define i32 @foo6(i32 %a, i32 %b) signext {
entry:
    %c = add i32 %a, 131072
    ret i32 %c
}

OpenPOWER on IntegriCloud