blob: 777f3757bb8910ac867575ed5f7700e799788852 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Uninitialized values are not handled correctly.
2;
Dan Gohman3c7d3082009-09-11 18:01:28 +00003; RUN: opt < %s -mem2reg -disable-output
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004;
5
Tanya Lattner97b38e12008-03-19 05:39:35 +00006define i32 @test() {
7 ; To be promoted
8 %X = alloca i32 ; <i32*> [#uses=1]
9 %Y = load i32* %X ; <i32> [#uses=1]
10 ret i32 %Y
11}