forked from OSchip/llvm-project
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:
parent
2fd8edd659
commit
d7753dadab
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue