Handle the case of a tail recursion in which the tail call is followed
[oota-llvm.git] / test / Assembler / private.ll
1 ; Test to make sure that the 'private' tag is not lost!
2 ;
3 ; RUN: llvm-as < %s | llvm-dis | grep private
4
5 declare void @foo()
6
7 define private void @foo() {
8         ret void
9 }