1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/Transforms/InstCombine/2005-07-07-DeadPHILoop.ll
2007-01-17 07:59:14 +00:00

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
}