mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
63bd1df323
llvm-svn: 49969
10 lines
177 B
LLVM
10 lines
177 B
LLVM
; Test to make sure that the 'internal' tag is not lost!
|
|
;
|
|
; RUN: llvm-as < %s | llvm-dis | grep internal
|
|
|
|
declare void @foo()
|
|
|
|
define internal void @foo() {
|
|
ret void
|
|
}
|