llvm-6502/test/Assembler/private.ll

10 lines
174 B
LLVM
Raw Normal View History

; 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
}