mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
e272693894
llvm-svn: 16808
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
|
|
}
|