blob: 51f88e4d616fa244d61047c83cd4e22c470e2159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
; Test to make sure that the 'internal' tag is not lost!
;
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | grep internal
declare void %foo()
implementation
internal void %foo() {
ret void
}
|