mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
e812d1133b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28500 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
181 B
LLVM
9 lines
181 B
LLVM
; RUN: llvm-as < %s | llvm-dis | grep 'tail call csretcc'
|
|
|
|
declare csretcc void %foo({}*, ...)
|
|
|
|
void %bar() {
|
|
tail call csretcc void({}*, ...)* %foo({}* null, int 0)
|
|
ret void
|
|
}
|