aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/SystemZ/03-RetArgSubreg.ll
blob: a31adbc821a8f47b925e797dbb3af6674fff5e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llvm-as < %s | llc -march=systemz | grep lgr | count 2
; RUN: llvm-as < %s | llc -march=systemz | grep nilf | count 1
; RUN: llvm-as < %s | llc -march=systemz | grep lgfr | count 1


define i32 @foo(i32 %a, i32 %b) {
entry:
    ret i32 %b
}

define i32 @foo1(i32 %a, i32 %b) zeroext {
entry:
    ret i32 %b
}

define i32 @foo2(i32 %a, i32 %b) signext {
entry:
    ret i32 %b
}