Slightly reformat LDA tests to ease grepping.
authorAndreas Bolka <a@bolka.at>
Tue, 28 Jul 2009 23:40:40 +0000 (23:40 +0000)
committerAndreas Bolka <a@bolka.at>
Tue, 28 Jul 2009 23:40:40 +0000 (23:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77398 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/LoopDependenceAnalysis/alias.ll
test/Analysis/LoopDependenceAnalysis/siv-strong.ll
test/Analysis/LoopDependenceAnalysis/siv-weak-crossing.ll
test/Analysis/LoopDependenceAnalysis/siv-weak-zero.ll
test/Analysis/LoopDependenceAnalysis/ziv.ll

index 6c613269bdda764745182f1916066e64e5bffcdf..b6a5a4fc377ad23dfe63ca67af2a97983c4c1b9c 100644 (file)
@@ -1,6 +1,6 @@
 ; RUN: llvm-as < %s | opt -disable-output -analyze -lda | FileCheck %s
 
-; x[5] = x[6] // with x being a pointer passed as argument
+;; x[5] = x[6] // with x being a pointer passed as argument
 
 define void @f1(i32* nocapture %xptr) nounwind {
 entry:
@@ -21,7 +21,7 @@ for.end:
   ret void
 }
 
-; x[5] = x[6] // with x being an array on the stack
+;; x[5] = x[6] // with x being an array on the stack
 
 define void @foo(...) nounwind {
 entry:
index 9536645e4ccda53b04a831359073c86997162f0a..c4e0476442fffc966a9c2d6d3e2b51913542bbf5 100644 (file)
@@ -3,8 +3,8 @@
 @x = common global [256 x i32] zeroinitializer, align 4
 @y = common global [256 x i32] zeroinitializer, align 4
 
-; for (i = 0; i < 256; i++)
-;   x[i] = x[i] + y[i]
+;; for (i = 0; i < 256; i++)
+;;   x[i] = x[i] + y[i]
 
 define void @f1(...) nounwind {
 entry:
@@ -28,8 +28,8 @@ for.end:
   ret void
 }
 
-; for (i = 0; i < 256; i++)
-;   x[i+1] = x[i] + y[i]
+;; for (i = 0; i < 256; i++)
+;;   x[i+1] = x[i] + y[i]
 
 define void @f2(...) nounwind {
 entry:
@@ -54,8 +54,8 @@ for.end:
   ret void
 }
 
-; for (i = 0; i < 10; i++)
-;   x[i+20] = x[i] + y[i]
+;; for (i = 0; i < 10; i++)
+;;   x[i+20] = x[i] + y[i]
 
 define void @f3(...) nounwind {
 entry:
index eff3644d9059cca899ca8dbb61e4f77a6917b33a..9b3d5784ba6a08e941d19a60cb80455b0835e973 100644 (file)
@@ -3,8 +3,8 @@
 @x = common global [256 x i32] zeroinitializer, align 4
 @y = common global [256 x i32] zeroinitializer, align 4
 
-; for (i = 0; i < 256; i++)
-;   x[i] = x[256 - i] + y[i]
+;; for (i = 0; i < 256; i++)
+;;   x[i] = x[256 - i] + y[i]
 
 define void @f1(...) nounwind {
 entry:
@@ -30,9 +30,9 @@ for.end:
   ret void
 }
 
-; // the same example, using more realistic IR
-; for (i = 0; i < 256; i++)
-;   x[i] = x[256 - i] + y[i]
+;; // the same example, using more realistic IR
+;; for (i = 0; i < 256; i++)
+;;   x[i] = x[256 - i] + y[i]
 
 define void @f2(...) nounwind {
 entry:
@@ -58,8 +58,8 @@ for.end:
   ret void
 }
 
-; for (i = 0; i < 100; i++)
-;   x[i] = x[256 - i] + y[i]
+;; for (i = 0; i < 100; i++)
+;;   x[i] = x[256 - i] + y[i]
 
 define void @f3(...) nounwind {
 entry:
index 12c90ba4cb3d0d53cf2231139b660a04c9f9f698..72fc2db375ea8db2ada0adf0df1863497bc5d286 100644 (file)
@@ -3,8 +3,8 @@
 @x = common global [256 x i32] zeroinitializer, align 4
 @y = common global [256 x i32] zeroinitializer, align 4
 
-; for (i = 0; i < 256; i++)
-;   x[i] = x[42] + y[i]
+;; for (i = 0; i < 256; i++)
+;;   x[i] = x[42] + y[i]
 
 define void @f1(...) nounwind {
 entry:
@@ -29,8 +29,8 @@ for.end:
   ret void
 }
 
-; for (i = 0; i < 250; i++)
-;   x[i] = x[255] + y[i]
+;; for (i = 0; i < 250; i++)
+;;   x[i] = x[255] + y[i]
 
 define void @f2(...) nounwind {
 entry:
index b099a57ae73adc9cfe1ae3b12da07b89d3591dda..21f9f3882acb93fe854f7a1773c08c84e63be965 100644 (file)
@@ -2,7 +2,7 @@
 
 @x = common global [256 x i32] zeroinitializer, align 4
 
-; x[5] = x[6]
+;; x[5] = x[6]
 
 define void @f1(...) nounwind {
 entry:
@@ -21,7 +21,7 @@ for.end:
   ret void
 }
 
-; x[c] = x[c+1] // with c being a loop-invariant constant
+;; x[c] = x[c+1] // with c being a loop-invariant constant
 
 define void @f2(i64 %c0) nounwind {
 entry: