2004-01-14 06:53:11 +01:00
|
|
|
; Test for a problem afflicting several C++ programs in the testsuite. The
|
|
|
|
; instcombine pass is trying to get rid of the cast in the invoke instruction,
|
|
|
|
; inserting a cast of the return value after the PHI instruction, but which is
|
|
|
|
; used by the PHI instruction. This is bad: because of the semantics of the
|
|
|
|
; invoke instruction, we really cannot perform this transformation at all at
|
|
|
|
; least without splitting the critical edge.
|
|
|
|
;
|
2006-12-02 05:23:10 +01:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
|
2004-01-14 06:53:11 +01:00
|
|
|
|
|
|
|
declare sbyte* %test()
|
|
|
|
|
|
|
|
int %foo() {
|
|
|
|
entry:
|
|
|
|
br bool true, label %cont, label %call
|
|
|
|
call:
|
|
|
|
%P = invoke int*()* cast (sbyte*()* %test to int*()*)()
|
|
|
|
to label %cont except label %N
|
|
|
|
cont:
|
|
|
|
%P2 = phi int* [%P, %call], [null, %entry]
|
|
|
|
%V = load int* %P2
|
|
|
|
ret int %V
|
|
|
|
N:
|
|
|
|
ret int 0
|
|
|
|
}
|