mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
0aba6c9435
llvm-svn: 62279
10 lines
174 B
LLVM
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
|
|
}
|