mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 14:36:01 +00:00
![Dan Gohman](/assets/img/avatar_default.png)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81293 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
358 B
LLVM
20 lines
358 B
LLVM
; RUN: llc < %s -march=systemz | grep lgr | count 2
|
|
; RUN: llc < %s -march=systemz | grep nihf | count 1
|
|
; RUN: llc < %s -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
|
|
}
|