blob: 75af4dc5b93467b375d9f57e52ce66c7babcdd73 [file] [log] [blame]
Dan Gohmanc1be92f2010-10-18 18:04:47 +00001; RUN: opt < %s -basicaa -globalsmodref-aa -gvn -S | not grep load
Tanya Lattnerdcd188d2008-02-14 06:56:27 +00002@X = internal global i32 4 ; <i32*> [#uses=1]
Chris Lattner059f5a52004-07-27 06:26:08 +00003
Tanya Lattnerdcd188d2008-02-14 06:56:27 +00004define i32 @test(i32* %P) {
5 store i32 7, i32* %P
6 store i32 12, i32* @X
7 %V = load i32* %P ; <i32> [#uses=1]
8 ret i32 %V
Chris Lattner059f5a52004-07-27 06:26:08 +00009}