Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / Transforms / ArgumentPromotion / chained.ll
blob5ccb7526cbc8b05c6f4a35f4a559446d31564a03
1 ; RUN: opt < %s -argpromotion -instcombine -S | not grep load
3 @G1 = constant i32 0            ; <i32*> [#uses=1]
4 @G2 = constant i32* @G1         ; <i32**> [#uses=1]
6 define internal i32 @test(i32** %X) {
7         %Y = load i32** %X              ; <i32*> [#uses=1]
8         %X.upgrd.1 = load i32* %Y               ; <i32> [#uses=1]
9         ret i32 %X.upgrd.1
12 define i32 @caller(i32** %P) {
13         %X = call i32 @test( i32** @G2 )                ; <i32> [#uses=1]
14         ret i32 %X