[llvm-commits] CVS: llvm/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll 2002-05-15-MissedTree.ll 2002-05-15-SubReassociate.ll 2002-05-15-SubReassociate2.ll 2002-07-09-DominanceProblem.ll 2003-08-12-InfiniteLoop.ll basictest.ll basictest2.ll looptest.ll otherops.ll subtest.ll
Misha Brukman
brukman at cs.uiuc.edu
Tue Sep 16 10:30:06 PDT 2003
Changes in directory llvm/test/Regression/Transforms/Reassociate:
2002-05-15-AgressiveSubMove.ll updated: 1.3 -> 1.4
2002-05-15-MissedTree.ll updated: 1.2 -> 1.3
2002-05-15-SubReassociate.ll updated: 1.3 -> 1.4
2002-05-15-SubReassociate2.ll updated: 1.2 -> 1.3
2002-07-09-DominanceProblem.ll updated: 1.2 -> 1.3
2003-08-12-InfiniteLoop.ll updated: 1.1 -> 1.2
basictest.ll updated: 1.2 -> 1.3
basictest2.ll updated: 1.2 -> 1.3
looptest.ll updated: 1.3 -> 1.4
otherops.ll updated: 1.2 -> 1.3
subtest.ll updated: 1.3 -> 1.4
---
Log message:
Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
---
Diffs of the changes:
Index: llvm/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll
diff -u llvm/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll:1.3 llvm/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll:1.4
--- llvm/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll:1.3 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll Tue Sep 16 10:29:47 2003
@@ -1,4 +1,4 @@
-; RUN: as < %s | opt -reassociate -instcombine -constprop -dce | dis | not grep add
+; RUN: llvm-as < %s | opt -reassociate -instcombine -constprop -dce | llvm-dis | not grep add
int %test(int %A) {
%X = add int %A, 1
Index: llvm/test/Regression/Transforms/Reassociate/2002-05-15-MissedTree.ll
diff -u llvm/test/Regression/Transforms/Reassociate/2002-05-15-MissedTree.ll:1.2 llvm/test/Regression/Transforms/Reassociate/2002-05-15-MissedTree.ll:1.3
--- llvm/test/Regression/Transforms/Reassociate/2002-05-15-MissedTree.ll:1.2 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/2002-05-15-MissedTree.ll Tue Sep 16 10:29:47 2003
@@ -1,4 +1,4 @@
-; RUN: as < %s | opt -reassociate -instcombine -constprop -die | dis | not grep 5
+; RUN: llvm-as < %s | opt -reassociate -instcombine -constprop -die | llvm-dis | not grep 5
int %test(int %A, int %B) {
%W = add int %B, -5
Index: llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate.ll
diff -u llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate.ll:1.3 llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate.ll:1.4
--- llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate.ll:1.3 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; With sub reassociation, constant folding can eliminate all of the constants.
;
-; RUN: as < %s | opt -reassociate -constprop -instcombine -dce | dis | not grep add
+; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -dce | llvm-dis | not grep add
int %test(int %A, int %B) {
%W = add int 5, %B
Index: llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate2.ll
diff -u llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate2.ll:1.2 llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate2.ll:1.3
--- llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate2.ll:1.2 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/2002-05-15-SubReassociate2.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; With sub reassociation, constant folding can eliminate the two 12 constants.
;
-; RUN: as < %s | opt -reassociate -constprop -dce | dis | not grep 12
+; RUN: llvm-as < %s | opt -reassociate -constprop -dce | llvm-dis | not grep 12
int "test"(int %A, int %B, int %C, int %D) {
%M = add int %A, 12
Index: llvm/test/Regression/Transforms/Reassociate/2002-07-09-DominanceProblem.ll
diff -u llvm/test/Regression/Transforms/Reassociate/2002-07-09-DominanceProblem.ll:1.2 llvm/test/Regression/Transforms/Reassociate/2002-07-09-DominanceProblem.ll:1.3
--- llvm/test/Regression/Transforms/Reassociate/2002-07-09-DominanceProblem.ll:1.2 Thu Aug 1 17:26:32 2002
+++ llvm/test/Regression/Transforms/Reassociate/2002-07-09-DominanceProblem.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; The reassociate pass is not preserving dominance properties correctly
;
-; RUN: as < %s | opt -reassociate
+; RUN: llvm-as < %s | opt -reassociate
int %compute_dist(int %i, int %j) {
%reg119 = sub int %j, %i
Index: llvm/test/Regression/Transforms/Reassociate/2003-08-12-InfiniteLoop.ll
diff -u llvm/test/Regression/Transforms/Reassociate/2003-08-12-InfiniteLoop.ll:1.1 llvm/test/Regression/Transforms/Reassociate/2003-08-12-InfiniteLoop.ll:1.2
--- llvm/test/Regression/Transforms/Reassociate/2003-08-12-InfiniteLoop.ll:1.1 Tue Aug 12 16:35:55 2003
+++ llvm/test/Regression/Transforms/Reassociate/2003-08-12-InfiniteLoop.ll Tue Sep 16 10:29:48 2003
@@ -1,4 +1,4 @@
-; RUN: as < %s | opt -reassociate -disable-output
+; RUN: llvm-as < %s | opt -reassociate -disable-output
implementation ; Functions:
Index: llvm/test/Regression/Transforms/Reassociate/basictest.ll
diff -u llvm/test/Regression/Transforms/Reassociate/basictest.ll:1.2 llvm/test/Regression/Transforms/Reassociate/basictest.ll:1.3
--- llvm/test/Regression/Transforms/Reassociate/basictest.ll:1.2 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/basictest.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; With reassociation, constant folding can eliminate the 12 and -12 constants.
;
-; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep add
+; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep add
int %test(int %arg) {
%tmp1 = sub int -12, %arg
Index: llvm/test/Regression/Transforms/Reassociate/basictest2.ll
diff -u llvm/test/Regression/Transforms/Reassociate/basictest2.ll:1.2 llvm/test/Regression/Transforms/Reassociate/basictest2.ll:1.3
--- llvm/test/Regression/Transforms/Reassociate/basictest2.ll:1.2 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/basictest2.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; With reassociation, constant folding can eliminate the +/- 30 constants.
;
-; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep 30
+; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 30
int "test"(int %reg109, int %reg1111) {
%reg115 = add int %reg109, -30 ; <int> [#uses=1]
Index: llvm/test/Regression/Transforms/Reassociate/looptest.ll
diff -u llvm/test/Regression/Transforms/Reassociate/looptest.ll:1.3 llvm/test/Regression/Transforms/Reassociate/looptest.ll:1.4
--- llvm/test/Regression/Transforms/Reassociate/looptest.ll:1.3 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/looptest.ll Tue Sep 16 10:29:48 2003
@@ -12,7 +12,7 @@
; In this case, we want to reassociate the specified expr so that i+j can be
; hoisted out of the inner most loop.
;
-; RUN: as < %s | opt -reassociate | dis | grep 115 | not grep 117
+; RUN: llvm-as < %s | opt -reassociate | llvm-dis | grep 115 | not grep 117
%.LC0 = internal global [4 x sbyte] c"%d\0A\00" ; <[4 x sbyte]*> [#uses=1]
Index: llvm/test/Regression/Transforms/Reassociate/otherops.ll
diff -u llvm/test/Regression/Transforms/Reassociate/otherops.ll:1.2 llvm/test/Regression/Transforms/Reassociate/otherops.ll:1.3
--- llvm/test/Regression/Transforms/Reassociate/otherops.ll:1.2 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/otherops.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; Reassociation should apply to Add, Mul, And, Or, & Xor
;
-; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep 12
+; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 12
int "test_mul"(int %arg) {
%tmp1 = mul int 12, %arg
Index: llvm/test/Regression/Transforms/Reassociate/subtest.ll
diff -u llvm/test/Regression/Transforms/Reassociate/subtest.ll:1.3 llvm/test/Regression/Transforms/Reassociate/subtest.ll:1.4
--- llvm/test/Regression/Transforms/Reassociate/subtest.ll:1.3 Sat Jun 28 18:23:31 2003
+++ llvm/test/Regression/Transforms/Reassociate/subtest.ll Tue Sep 16 10:29:48 2003
@@ -1,6 +1,6 @@
; With sub reassociation, constant folding can eliminate the 12 and -12 constants.
;
-; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep 12
+; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 12
int "test"(int %A, int %B) {
%X = add int -12, %A
More information about the llvm-commits
mailing list