blob: c9a453899d7a565d07a81f12feb250964c834688 [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -argpromotion -instcombine -S | not grep load
Kenneth Uildriksa092c122009-11-03 15:29:06 +00002target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00004@G1 = constant i32 0 ; <i32*> [#uses=1]
5@G2 = constant i32* @G1 ; <i32**> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00007define internal i32 @test(i32** %X) {
8 %Y = load i32** %X ; <i32*> [#uses=1]
9 %X.upgrd.1 = load i32* %Y ; <i32> [#uses=1]
10 ret i32 %X.upgrd.1
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}
12
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000013define i32 @caller(i32** %P) {
14 %X = call i32 @test( i32** @G2 ) ; <i32> [#uses=1]
15 ret i32 %X
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016}
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000017