blob: 0759da47ad9a2355f99ffd3e5897c965dbd0f7b5 [file] [log] [blame]
Dan Gohman9737a632009-09-08 16:50:01 +00001; RUN: opt %s -globalopt | llvm-dis | not grep G
Chris Lattner78d31c12004-11-14 20:41:39 +00002
Tanya Lattner5640bd12008-03-01 09:15:35 +00003@G = internal global i32 17 ; <i32*> [#uses=3]
Chris Lattner78d31c12004-11-14 20:41:39 +00004
Tanya Lattner5640bd12008-03-01 09:15:35 +00005define void @foo() {
6 %V = load i32* @G ; <i32> [#uses=1]
7 store i32 %V, i32* @G
Chris Lattner78d31c12004-11-14 20:41:39 +00008 ret void
9}
Tanya Lattner5640bd12008-03-01 09:15:35 +000010
11define i32 @bar() {
12 %X = load i32* @G ; <i32> [#uses=1]
13 ret i32 %X
Chris Lattner78d31c12004-11-14 20:41:39 +000014}
15