1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/LevelRaise/2002-07-16-SourceAndDestCrash.ll
Chris Lattner 21de4a43ee New testcase finally identified!!
llvm-svn: 2935
2002-07-17 02:36:02 +00:00

22 lines
506 B
LLVM

; This testcase, which was distilled from a HUGE function, causes problems
; because both the source and the destination of the %Y cast are converted
; to a new type, which causes massive problems.
; RUN: as < %s | opt -raise -raise-start-inst=W
int **%test(sbyte **%S) {
BB0:
br label %Loop
Loop:
%X = phi sbyte* [null , %BB0], [%Z, %Loop]
%Y = cast sbyte *%X to sbyte **
%Z = load sbyte** %Y
br bool true, label %Loop, label %Out
Out:
%W = cast sbyte** %Y to int**
ret int** %W
}