mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-05-19 21:46:12 +00:00
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()
|