mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
a9d8d647ca
llvm-svn: 49971
10 lines
199 B
LLVM
10 lines
199 B
LLVM
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep internal
|
|
|
|
@G = internal global i32 123 ; <i32*> [#uses=1]
|
|
|
|
define void @foo() {
|
|
store i32 1, i32* @G
|
|
ret void
|
|
}
|
|
|