64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
15 lines
273 B
LLVM
15 lines
273 B
LLVM
; Test return attributes
|
|
; RUN: llvm-as < %s | llvm-dis | grep "define inreg i32"
|
|
; RUN: llvm-as < %s | llvm-dis | grep "call inreg i32"
|
|
; RUN: verify-uselistorder %s
|
|
|
|
define inreg i32 @fn1() {
|
|
ret i32 0
|
|
}
|
|
|
|
define void @fn2() {
|
|
%t = call inreg i32 @fn1()
|
|
ret void
|
|
}
|
|
|