mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 13:51:37 +00:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
19 lines
483 B
LLVM
19 lines
483 B
LLVM
; RUN: opt < %s -globalopt -S | not grep global
|
|
|
|
@G = internal global i32* null ; <i32**> [#uses=3]
|
|
|
|
define void @init() {
|
|
%P = malloc i32 ; <i32*> [#uses=1]
|
|
store i32* %P, i32** @G
|
|
%GV = load i32** @G ; <i32*> [#uses=1]
|
|
store i32 0, i32* %GV
|
|
ret void
|
|
}
|
|
|
|
define i32 @get() {
|
|
%GV = load i32** @G ; <i32*> [#uses=1]
|
|
%V = load i32* %GV ; <i32> [#uses=1]
|
|
ret i32 %V
|
|
}
|
|
|