2006-12-02 05:23:10 +01:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -predsimplify -instcombine -simplifycfg -disable-output &&
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -predsimplify -instcombine -simplifycfg | llvm-dis | grep -v declare | not grep fail &&
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -predsimplify -instcombine -simplifycfg | llvm-dis | grep -v declare | grep -c pass | grep 3
|
2006-10-22 23:36:41 +02:00
|
|
|
|
2006-10-26 02:51:58 +02:00
|
|
|
int %test1(int %x, int %y) {
|
2006-10-22 23:36:41 +02:00
|
|
|
entry:
|
|
|
|
%tmp2 = or int %x, %y ; <int> [#uses=1]
|
2006-10-26 02:51:58 +02:00
|
|
|
%tmp = seteq int %tmp2, 0 ; <bool> [#uses=1]
|
2006-10-22 23:36:41 +02:00
|
|
|
br bool %tmp, label %cond_true, label %return
|
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
|
|
|
%tmp4 = seteq int %x, 0 ; <bool> [#uses=1]
|
2006-10-28 04:34:41 +02:00
|
|
|
br bool %tmp4, label %cond_true5, label %cond_false
|
2006-10-22 23:36:41 +02:00
|
|
|
|
|
|
|
cond_true5: ; preds = %cond_true
|
2006-10-28 04:34:41 +02:00
|
|
|
%tmp6 = call int %pass( ) ; <int> [#uses=1]
|
2006-10-22 23:36:41 +02:00
|
|
|
ret int %tmp6
|
|
|
|
|
2006-10-28 04:34:41 +02:00
|
|
|
cond_false:
|
|
|
|
%tmp8 = call int %fail ( ) ; <int> [#uses=1]
|
|
|
|
ret int %tmp8
|
|
|
|
|
2006-10-22 23:36:41 +02:00
|
|
|
return: ; preds = %cond_next7
|
|
|
|
ret int 0
|
|
|
|
}
|
|
|
|
|
2006-10-26 02:51:58 +02:00
|
|
|
int %test2(int %x, int %y) {
|
|
|
|
entry:
|
|
|
|
%tmp2 = or int %x, %y ; <int> [#uses=1]
|
|
|
|
%tmp = setne int %tmp2, 0 ; <bool> [#uses=1]
|
|
|
|
br bool %tmp, label %cond_true, label %return
|
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
|
|
|
%tmp4 = seteq int %x, 0 ; <bool> [#uses=1]
|
2006-10-28 04:34:41 +02:00
|
|
|
br bool %tmp4, label %cond_true5, label %cond_false
|
2006-10-26 02:51:58 +02:00
|
|
|
|
|
|
|
cond_true5: ; preds = %cond_true
|
2006-10-28 04:34:41 +02:00
|
|
|
%tmp6 = call int %pass1( ) ; <int> [#uses=1]
|
2006-10-26 02:51:58 +02:00
|
|
|
ret int %tmp6
|
|
|
|
|
2006-10-28 04:34:41 +02:00
|
|
|
cond_false:
|
|
|
|
%tmp8 = call int %pass2( ) ; <int> [#uses=1]
|
|
|
|
ret int %tmp8
|
|
|
|
|
2006-10-26 02:51:58 +02:00
|
|
|
return: ; preds = %cond_next7
|
|
|
|
ret int 0
|
|
|
|
}
|
|
|
|
|
2006-10-22 23:36:41 +02:00
|
|
|
declare int %fail()
|
2006-10-26 02:51:58 +02:00
|
|
|
declare int %pass()
|
2006-10-28 04:34:41 +02:00
|
|
|
declare int %pass1()
|
|
|
|
declare int %pass2()
|