blob: 4332d3dd38c275dd30ec98cf37681d17d5b4d471 [file] [log] [blame]
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00001; RUN: opt < %s -globalopt -S | not grep global
Chris Lattner904697e2004-10-07 19:16:26 +00002
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00003@X = internal global i32 4 ; <i32*> [#uses=1]
Chris Lattner904697e2004-10-07 19:16:26 +00004
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00005define i32 @foo() {
6 %V = load i32* @X ; <i32> [#uses=1]
7 ret i32 %V
Chris Lattner904697e2004-10-07 19:16:26 +00008}
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00009