1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/CodeGen/Generic/call-void.ll

11 lines
109 B
LLVM
Raw Normal View History

2004-11-06 22:40:51 +01:00
; RUN: llvm-as < %s | llc
void %foo() {
ret void
}
int %main() {
call void ()* %foo()
ret int 0
}