New testcase, the JIT currently handles this right, I just don't want to

reintroduce a bug that didn't have a testcase.

llvm-svn: 6623
This commit is contained in:
Chris Lattner 2003-06-05 16:57:55 +00:00
parent 2fd8edd659
commit d7753dadab
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
; Testcase distilled from 256.bzip2.
target endian = little
target pointersize = 32
int %main() {
entry:
%X = add int 1, -1
br label %Next
Next:
%A = phi int [ %X, %entry ]
%B = phi int [ %X, %entry ]
%C = phi int [ %X, %entry ]
ret int %C
}