summaryrefslogtreecommitdiffstats
path: root/test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll
blob: 99f9136ea37056df16090d30721d1911a36825b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-as < %s  | opt -sccp | llvm-dis | 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