At Chris' suggestion, move the liveness and worklist datastructures into
[oota-llvm.git] / test / Transforms / IndVarsSimplify / 2003-04-16-ExprAnalysis.ll
index 450c6c21ae9cb5f8981089ec159f283a4e7427d0..2487ea95e27d915f7a70f617e249251b79655d62 100644 (file)
@@ -1,14 +1,17 @@
 ; 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
+; RUN: llvm-as < %s | opt -indvars
 
-%X = global int 7
+@X = global i32 7               ; <i32*> [#uses=1]
 
-void %test(int %A) {
+define void @test(i32 %A) {
+; <label>:0
         br label %Loop
-Loop:
-        %IV = phi int [%A, %0], [%IVNext, %Loop]
-        %IVNext = add int %IV, cast (int* %X to int)
+
+Loop:           ; preds = %Loop, %0
+        %IV = phi i32 [ %A, %0 ], [ %IVNext, %Loop ]            ; <i32> [#uses=1]
+        %IVNext = add i32 %IV, ptrtoint (i32* @X to i32)                ; <i32> [#uses=1]
         br label %Loop
 }
+