mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
a9d8d647ca
llvm-svn: 49971
10 lines
227 B
LLVM
10 lines
227 B
LLVM
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep global
|
|
|
|
@X = internal global i32 4 ; <i32*> [#uses=1]
|
|
|
|
define i32 @foo() {
|
|
%V = load i32* @X ; <i32> [#uses=1]
|
|
ret i32 %V
|
|
}
|
|
|