mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
e25af0f6e6
llvm-svn: 19964
9 lines
153 B
LLVM
9 lines
153 B
LLVM
; RUN: llvm-as %s -o /dev/null 2>&1 | grep "LLVM functions cannot return aggregate types"
|
|
|
|
void %test() {
|
|
call {} %foo()
|
|
ret void
|
|
}
|
|
|
|
declare {} %foo()
|