Files
clang-p2996/llvm/test/CodeGen/SystemZ/03-RetArgSubreg.ll
Chris Lattner b90ed2233c manually upgrade a bunch of tests to modern syntax, and remove some that
are either unreduced or only test old syntax.

llvm-svn: 133228
2011-06-17 03:14:27 +00:00

20 lines
360 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 zeroext i32 @foo1(i32 %a, i32 %b) {
entry:
ret i32 %b
}
define signext i32 @foo2(i32 %a, i32 %b) {
entry:
ret i32 %b
}