mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
9 lines
147 B
Plaintext
9 lines
147 B
Plaintext
|
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep internal
|
||
|
|
||
|
%G = internal global int 123
|
||
|
|
||
|
void %foo() {
|
||
|
store int 1, int* %G
|
||
|
ret void
|
||
|
}
|