summaryrefslogtreecommitdiff
path: root/test/Transforms/IndVarsSimplify/2003-04-16-ExprAnalysis.ll
blob: b21e3bbf6c168fdfdf41221dc2e934f6e9d9e672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; 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-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
}