summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/03-RetAddImmSubreg.ll
blob: 0a7f5ee22650f529f3e80455097f417297bab08d (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: llc < %s -march=systemz | grep ahi   | count 3
; RUN: llc < %s -march=systemz | grep afi   | count 3
; RUN: llc < %s -march=systemz | grep lgfr  | count 4
; RUN: llc < %s -march=systemz | grep llgfr | count 2


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 zeroext i32 @foo3(i32 %a, i32 %b)  {
entry:
    %c = add i32 %a, 1
    ret i32 %c
}

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

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

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