1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Assembler/private.ll
Rafael Espindola 0aba6c9435 Add the private linkage.
llvm-svn: 62279
2009-01-15 20:18:42 +00:00

10 lines
174 B
LLVM

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