[llvm-commits] [llvm] r100278 - /llvm/trunk/test/Transforms/IndVarSimplify/floating-point-iv.ll

Chris Lattner sabre at nondot.org
Fri Apr 2 23:24:03 PDT 2010


Author: lattner
Date: Sat Apr  3 01:24:03 2010
New Revision: 100278

URL: http://llvm.org/viewvc/llvm-project?rev=100278&view=rev
Log:
actually just remove this, will move the real feature test here.

Removed:
    llvm/trunk/test/Transforms/IndVarSimplify/floating-point-iv.ll

Removed: llvm/trunk/test/Transforms/IndVarSimplify/floating-point-iv.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/IndVarSimplify/floating-point-iv.ll?rev=100277&view=auto
==============================================================================
--- llvm/trunk/test/Transforms/IndVarSimplify/floating-point-iv.ll (original)
+++ llvm/trunk/test/Transforms/IndVarSimplify/floating-point-iv.ll (removed)
@@ -1,35 +0,0 @@
-; RUN: opt < %s -indvars -S | grep icmp | count 2
-; RUN: opt < %s -indvars -S | grep sitofp | count 1
-; RUN: opt < %s -indvars -S | grep uitofp | count 1
-
-define void @bar() nounwind {
-entry:
-	br label %bb
-
-bb:		; preds = %bb, %entry
-	%x.0.reg2mem.0 = phi double [ 0.000000e+00, %entry ], [ %1, %bb ]		; <double> [#uses=2]
-	%0 = tail call i32 @foo(double %x.0.reg2mem.0) nounwind		; <i32> [#uses=0]
-	%1 = fadd double %x.0.reg2mem.0, 1.0e+0		; <double> [#uses=2]
-	%2 = fcmp olt double %1, 2147483646.0e+0		; <i1> [#uses=1]
-	br i1 %2, label %bb, label %return
-
-return:		; preds = %bb
-	ret void
-}
-
-define void @bar1() nounwind {
-entry:
-	br label %bb
-
-bb:		; preds = %bb, %entry
-	%x.0.reg2mem.0 = phi double [ 0.000000e+00, %entry ], [ %1, %bb ]		; <double> [#uses=2]
-	%0 = tail call i32 @foo(double %x.0.reg2mem.0) nounwind		; <i32> [#uses=0]
-	%1 = fadd double %x.0.reg2mem.0, 1.0e+0		; <double> [#uses=2]
-	%2 = fcmp olt double %1, 2147483647.0e+0		; <i1> [#uses=1]
-	br i1 %2, label %bb, label %return
-
-return:		; preds = %bb
-	ret void
-}
-
-declare i32 @foo(double)





More information about the llvm-commits mailing list