[ConstraintElim] Add support for decomposing gep nuw (#118639)
[llvm-project.git] / llvm / test / Transforms / SCCP / 2008-04-22-multiple-ret-sccp.ll
blob86fb198e08cb257e32c90d947b5a5093f69d4c63
1 ; RUN: opt < %s -passes=sccp -S | grep "ret i32 %Z"
2 ; rdar://5778210
4 declare {i32, i32} @bar(i32 %A) 
6 define i32 @foo() {
7         %X = call {i32, i32} @bar(i32 17)
8         %Y = extractvalue {i32, i32} %X, 0
9         %Z = add i32 %Y, %Y
10         ret i32 %Z