llvm-mc: Parse symbol attribute directives.
[oota-llvm.git] / test / Other / 2008-10-06-RemoveDeadPass.ll
1 ; RUN: llvm-as < %s | opt -inline -internalize -disable-output
2 define void @foo() nounwind {
3   ret void
4 }
5
6 define void @main(...) nounwind {
7   call void @foo()
8   ret void
9 }
10
11