summaryrefslogtreecommitdiff
path: root/test/Assembler/private.ll
blob: 37145727a5890dfa33dd38178575234779f481b7 (plain)
1
2
3
4
5
6
7
8
9
; Test to make sure that the 'private' tag is not lost!
;
; RUN: llvm-as < %s | llvm-dis | grep private

declare void @foo()

define private void @foo() {
        ret void
}