2009-09-11 20:01:28 +02:00
|
|
|
; RUN: opt < %s -simplifycfg -S | \
|
2007-04-15 11:21:47 +02:00
|
|
|
; RUN: not grep select
|
2004-10-14 07:12:50 +02:00
|
|
|
|
|
|
|
;; The PHI node in this example should not be turned into a select, as we are
|
|
|
|
;; not able to ifcvt the entire block. As such, converting to a select just
|
|
|
|
;; introduces inefficiency without saving copies.
|
|
|
|
|
2008-03-18 04:45:45 +01:00
|
|
|
define i32 @bar(i1 %C) {
|
2004-10-14 07:12:50 +02:00
|
|
|
entry:
|
2008-03-18 04:45:45 +01:00
|
|
|
br i1 %C, label %then, label %endif
|
|
|
|
then: ; preds = %entry
|
|
|
|
%tmp.3 = call i32 @qux( ) ; <i32> [#uses=0]
|
2004-10-14 07:12:50 +02:00
|
|
|
br label %endif
|
2008-03-18 04:45:45 +01:00
|
|
|
endif: ; preds = %then, %entry
|
|
|
|
%R = phi i32 [ 123, %entry ], [ 12312, %then ] ; <i32> [#uses=1]
|
|
|
|
;; stuff to disable tail duplication
|
|
|
|
call i32 @qux( ) ; <i32>:0 [#uses=0]
|
|
|
|
call i32 @qux( ) ; <i32>:1 [#uses=0]
|
|
|
|
call i32 @qux( ) ; <i32>:2 [#uses=0]
|
|
|
|
call i32 @qux( ) ; <i32>:3 [#uses=0]
|
|
|
|
call i32 @qux( ) ; <i32>:4 [#uses=0]
|
|
|
|
call i32 @qux( ) ; <i32>:5 [#uses=0]
|
|
|
|
call i32 @qux( ) ; <i32>:6 [#uses=0]
|
|
|
|
ret i32 %R
|
2004-10-14 07:12:50 +02:00
|
|
|
}
|
|
|
|
|
2008-03-18 04:45:45 +01:00
|
|
|
declare i32 @qux()
|