mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
4572ce85b0
llvm-svn: 33296
15 lines
391 B
LLVM
15 lines
391 B
LLVM
; This is a test case for the expression analysis code, not really indvars.
|
|
; It was assuming any constant of int type was a ConstantInteger.
|
|
;
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -indvars
|
|
|
|
%X = global int 7
|
|
|
|
void %test(int %A) {
|
|
br label %Loop
|
|
Loop:
|
|
%IV = phi int [%A, %0], [%IVNext, %Loop]
|
|
%IVNext = add int %IV, cast (int* %X to int)
|
|
br label %Loop
|
|
}
|