1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/IndVarsSimplify/2003-04-16-ExprAnalysis.ll

15 lines
371 B
LLVM
Raw Normal View History

2003-04-17 00:46:16 +02:00
; 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: as < %s | 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
}