mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
cd263ad17d
llvm-svn: 8544
12 lines
179 B
Plaintext
12 lines
179 B
Plaintext
; Test to make sure that the 'internal' tag is not lost!
|
|
;
|
|
; RUN: llvm-as < %s | llvm-dis | grep internal
|
|
|
|
declare void %foo()
|
|
implementation
|
|
|
|
internal void %foo() {
|
|
ret void
|
|
}
|
|
|