blob: 7cec2c57c2f62affc5720b74f0568ffcd97fdfd9 [file] [log] [blame]
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00001; RUN: opt < %s -inline -internalize -disable-output
Devang Patel617fddf2008-10-06 20:36:36 +00002define void @foo() nounwind {
3 ret void
4}
5
6define void @main(...) nounwind {
7 call void @foo()
8 ret void
9}
10
11