blob: f62885278e1b69df2cdc6811a9be65b809341e2a [file] [log] [blame]
Dan Gohmanb1e1e822009-09-08 16:50:01 +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