mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 22:28:22 +00:00
29acd75af5
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2887 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
169 B
Plaintext
12 lines
169 B
Plaintext
; Test to make sure that the 'internal' tag is not lost!
|
|
;
|
|
; RUN: as < %s | dis | grep internal
|
|
|
|
declare void %foo()
|
|
implementation
|
|
|
|
internal void %foo() {
|
|
ret void
|
|
}
|
|
|