summaryrefslogtreecommitdiffstats
path: root/test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll
blob: 1b26ca9e194db7762e2d48f5b22f9c58946a4b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt < %s -sccp -S | grep {ret i32 %Z}
; rdar://5778210

declare {i32, i32} @bar(i32 %A) 

define i32 @foo() {
	%X = call {i32, i32} @bar(i32 17)
        %Y = getresult {i32, i32} %X, 0
	%Z = add i32 %Y, %Y
	ret i32 %Z
}
OpenPOWER on IntegriCloud