mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
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
|
||
|
}
|
||
|
|