mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
264 B
LLVM
14 lines
264 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
|
|
|
|
; This example caused instcombine to spin into an infinite loop.
|
|
|
|
void %test(int *%P) {
|
|
ret void
|
|
Dead:
|
|
%X = phi int [%Y, %Dead]
|
|
%Y = div int %X, 10
|
|
store int %Y, int* %P
|
|
br label %Dead
|
|
}
|
|
|