blob: a82d1b6f4b778f5923a89c1d9654c14d4087d08d [file] [log] [blame]
Devang Patel3faa4122008-10-06 20:36:36 +00001; RUN: llvm-as < %s | opt -inline -internalize -disable-output
2define void @foo() nounwind {
3 ret void
4}
5
6define void @main(...) nounwind {
7 call void @foo()
8 ret void
9}
10
11