[polly] r179672 - tests: Fix 'instruction does not dominate all its uses' error

Tobias Grosser grosser at fim.uni-passau.de
Wed Apr 17 00:20:17 PDT 2013


Author: grosser
Date: Wed Apr 17 02:20:17 2013
New Revision: 179672

URL: http://llvm.org/viewvc/llvm-project?rev=179672&view=rev
Log:
tests: Fix 'instruction does not dominate all its uses' error

The LLVM-IR of this test case was apperently incorrect.

Modified:
    polly/trunk/test/Isl/CodeGen/scevcodegen-1.ll

Modified: polly/trunk/test/Isl/CodeGen/scevcodegen-1.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/Isl/CodeGen/scevcodegen-1.ll?rev=179672&r1=179671&r2=179672&view=diff
==============================================================================
--- polly/trunk/test/Isl/CodeGen/scevcodegen-1.ll (original)
+++ polly/trunk/test/Isl/CodeGen/scevcodegen-1.ll Wed Apr 17 02:20:17 2013
@@ -8,10 +8,10 @@ define void @main() nounwind {
 
 .start:
   %indvar15 = phi i64 [ 0, %.split ], [ %indvar.next16, %.loopexit ]
+  %tmp25 = add i64 %indvar15, 1
   br i1 true, label %.preheader, label %.loop2
 
 .preheader:
-  %tmp25 = add i64 %indvar15, 1
   br label %.loop1
 
 .loop1:





More information about the llvm-commits mailing list