aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/03-RetArgSubreg.ll
blob: a4cc9554f4f0731bac59445877c43edae77f99ea (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 nihf  | 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
}