blob: 27d00150d685b9f8913e7e0b35397b34ef976f26 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Promoting some values allows promotion of other values.
Tanya Lattner97928372008-03-19 07:28:33 +00002; RUN: llvm-as < %s | opt -mem2reg | llvm-dis | 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