xref: /llvm-project/llvm/test/Other/2008-10-06-RemoveDeadPass.ll (revision 34c4fae4b296038bbfda5b37c4eb06d5a2c0650b)
1; RUN: opt < %s -passes='cgscc(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
12