xref: /llvm-project/llvm/test/CodeGen/Generic/call-void.ll (revision c8054d90fbe7ff386577c27dd51d597924036cde)
1; RUN: llc < %s
2
3define void @foo() {
4        ret void
5}
6
7define i32 @main() {
8        call void @foo( )
9        ret i32 0
10}
11
12