1 ; RUN: opt < %s -ipconstprop -S > %t
2 ; RUN: cat %t | grep {store i32 %Z, i32\\* %Q}
3 ; RUN: cat %t | grep {add i32 1, 3}
5 ;; This function returns its second argument on all return statements
6 define internal i32* @incdec(i1 %C, i32* %V) {
8 br i1 %C, label %T, label %F
12 store i32 %X1, i32* %V
17 store i32 %X2, i32* %V
21 ;; This function returns its first argument as a part of a multiple return
23 define internal { i32, i32 } @foo(i32 %A, i32 %B) {
25 %Y = insertvalue { i32, i32 } undef, i32 %A, 0
26 %Z = insertvalue { i32, i32 } %Y, i32 %X, 1
30 define void @caller(i1 %C) {
32 ;; Call incdec to see if %W is properly replaced by %Q
33 %W = call i32* @incdec(i1 %C, i32* %Q ) ; <i32> [#uses=1]
34 ;; Call @foo twice, to prevent the arguments from propagating into the
35 ;; function (so we can check the returned argument is properly
36 ;; propagated per-caller).
37 %S1 = call { i32, i32 } @foo(i32 1, i32 2)
38 %X1 = extractvalue { i32, i32 } %S1, 0
39 %S2 = invoke { i32, i32 } @foo(i32 3, i32 4) to label %OK unwind label %RET
41 %X2 = extractvalue { i32, i32 } %S2, 0
42 ;; Do some stuff with the returned values which we can grep for