blob: e82caa9fe0f6f766c7d1a3fbaa66afb1a696e6e5 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Promoting some values allows promotion of other values.
Dan Gohman3c7d3082009-09-11 18:01:28 +00002; RUN: opt < %s -mem2reg -S | not grep alloca
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003
Tanya Lattner97928372008-03-19 07:28:33 +00004define i32 @test2() {
5 %result = alloca i32 ; <i32*> [#uses=2]
6 %a = alloca i32 ; <i32*> [#uses=2]
7 %p = alloca i32* ; <i32**> [#uses=2]
8 store i32 0, i32* %a
9 store i32* %a, i32** %p
10 %tmp.0 = load i32** %p ; <i32*> [#uses=1]
11 %tmp.1 = load i32* %tmp.0 ; <i32> [#uses=1]
12 store i32 %tmp.1, i32* %result
13 %tmp.2 = load i32* %result ; <i32> [#uses=1]
14 ret i32 %tmp.2
Dan Gohmanf17a25c2007-07-18 16:29:46 +000015}
16