mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 04:08:07 +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()
|