Renamed `as' => `llvm-as', `dis' => `llvm-dis'.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8544 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Assembler/2002-04-07-HexFloatConstants.llx b/test/Assembler/2002-04-07-HexFloatConstants.llx
index 5411faa..f740c28 100644
--- a/test/Assembler/2002-04-07-HexFloatConstants.llx
+++ b/test/Assembler/2002-04-07-HexFloatConstants.llx
@@ -5,8 +5,8 @@
 ; of the bug that was causing the Olden Health benchmark to output incorrect
 ; results!
 ;
-; RUN: as < %s | opt -constprop | dis > s1 && \
-; RUN: as < %s | dis | as | opt -constprop | dis > s2 && \
+; RUN: llvm-as < %s | opt -constprop | llvm-dis > s1 && \
+; RUN: llvm-as < %s | llvm-dis | llvm-as | opt -constprop | llvm-dis > s2 && \
 ; RUN: diff s1 s2
 
 implementation
diff --git a/test/Assembler/2002-04-07-InfConstant.llx b/test/Assembler/2002-04-07-InfConstant.llx
index 81ac678..8ca7450 100644
--- a/test/Assembler/2002-04-07-InfConstant.llx
+++ b/test/Assembler/2002-04-07-InfConstant.llx
@@ -1,6 +1,6 @@
 ; The output formater prints out 1.0e100 as Inf!
 ;
-; RUN: as < %s | dis | as | dis
+; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
 
 implementation
 
diff --git a/test/Assembler/2002-04-29-NameBinding.llx b/test/Assembler/2002-04-29-NameBinding.llx
index 29378a3..88ad493 100644
--- a/test/Assembler/2002-04-29-NameBinding.llx
+++ b/test/Assembler/2002-04-29-NameBinding.llx
@@ -4,7 +4,7 @@
 ; Check by running globaldce, which will remove the constant if there are
 ; no references to it!
 ; 
-; RUN: as < %s | opt -globaldce | dis | not grep constant
+; RUN: llvm-as < %s | opt -globaldce | llvm-dis | not grep constant
 ;
 	
 %v1 = internal constant int 5
diff --git a/test/Assembler/2002-07-08-HugePerformanceProblem.llx b/test/Assembler/2002-07-08-HugePerformanceProblem.llx
index 6335c8b..46caeae 100644
--- a/test/Assembler/2002-07-08-HugePerformanceProblem.llx
+++ b/test/Assembler/2002-07-08-HugePerformanceProblem.llx
@@ -1,7 +1,7 @@
 ; This file takes about 48 __MINUTES__ to assemble using as.  This is WAY too
 ; long.  The type resolution code needs to be sped up a lot.	
 
-; RUN: ulimit -t 20; as < %s
+; RUN: ulimit -t 20; llvm-as < %s
 
 	%ALL_INTERSECTIONS_METHOD = type int (%OBJECT*, %RAY*, %ISTACK*)*
 	%BBOX = type { %BBOX_VECT, %BBOX_VECT }
diff --git a/test/Assembler/2002-07-14-InternalLossage.llx b/test/Assembler/2002-07-14-InternalLossage.llx
index faf4223..3146964 100644
--- a/test/Assembler/2002-07-14-InternalLossage.llx
+++ b/test/Assembler/2002-07-14-InternalLossage.llx
@@ -1,6 +1,6 @@
 ; Test to make sure that the 'internal' tag is not lost!
 ;
-; RUN: as < %s | dis | grep internal
+; RUN: llvm-as < %s | llvm-dis | grep internal
 
 declare void %foo()
 implementation
diff --git a/test/Assembler/2002-07-14-OpaqueType.llx b/test/Assembler/2002-07-14-OpaqueType.llx
index d6d5a83..b4de7e7 100644
--- a/test/Assembler/2002-07-14-OpaqueType.llx
+++ b/test/Assembler/2002-07-14-OpaqueType.llx
@@ -1,5 +1,5 @@
 ; Test that opaque types are preserved correctly
-; RUN: as < %s | dis | as | dis
+; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
 ;
 
 %Ty = type opaque
diff --git a/test/Assembler/2002-07-25-ParserAssertionFailure.llx b/test/Assembler/2002-07-25-ParserAssertionFailure.llx
index 8c75423..9e44afa 100644
--- a/test/Assembler/2002-07-25-ParserAssertionFailure.llx
+++ b/test/Assembler/2002-07-25-ParserAssertionFailure.llx
@@ -1,6 +1,6 @@
 ; Make sure we don't get an assertion failure, even though this is a parse 
 ; error
-; RUN: as < %s 2>&1 | grep 'No arguments'
+; RUN: llvm-as < %s 2>&1 | grep 'No arguments'
 
 %ty = type void (int)
 
diff --git a/test/Assembler/2002-07-25-QuoteInString.llx b/test/Assembler/2002-07-25-QuoteInString.llx
index 8da7018..156f979 100644
--- a/test/Assembler/2002-07-25-QuoteInString.llx
+++ b/test/Assembler/2002-07-25-QuoteInString.llx
@@ -1,5 +1,5 @@
 ; Test double quotes in strings work correctly!
-; RUN: as < %s | dis | as | dis
+; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
 ;
 
 %str = internal global [6 x sbyte] c"\22foo\22\00"
diff --git a/test/Assembler/2002-07-25-ReturnPtrFunction.llx b/test/Assembler/2002-07-25-ReturnPtrFunction.llx
index ea40860..354fa54 100644
--- a/test/Assembler/2002-07-25-ReturnPtrFunction.llx
+++ b/test/Assembler/2002-07-25-ReturnPtrFunction.llx
@@ -1,7 +1,7 @@
 ; Test that returning a pointer to a function causes the disassembler to print 
 ; the right thing.
 ;
-; RUN: as < %s | dis | as
+; RUN: llvm-as < %s | llvm-dis | llvm-as
 
 %ty = type void (int)
 
diff --git a/test/Assembler/2002-07-31-SlashInString.llx b/test/Assembler/2002-07-31-SlashInString.llx
index 5b6daf0..4408f0a 100644
--- a/test/Assembler/2002-07-31-SlashInString.llx
+++ b/test/Assembler/2002-07-31-SlashInString.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis | as 
+; RUN: llvm-as < %s | llvm-dis | llvm-as 
 
 ; Make sure that \\ works in a string initializer
 %Slashtest = internal global [8 x sbyte] c"\5Cbegin{\00"
diff --git a/test/Assembler/2002-08-16-ConstExprInlined.llx b/test/Assembler/2002-08-16-ConstExprInlined.llx
index 37d9424..a88dc6a 100644
--- a/test/Assembler/2002-08-16-ConstExprInlined.llx
+++ b/test/Assembler/2002-08-16-ConstExprInlined.llx
@@ -8,7 +8,7 @@
 ; reader should NEVER produce a program "successfully" with placeholders still
 ; around!
 
-; RUN: as < %s | dis | as
+; RUN: llvm-as < %s | llvm-dis | llvm-as
 
 %.LC0 = internal global [4 x sbyte] c"foo\00"		; <[4 x sbyte]*> [#uses=1]
 
diff --git a/test/Assembler/2002-08-19-BytecodeReader.llx b/test/Assembler/2002-08-19-BytecodeReader.llx
index 302a30a..3e49761 100644
--- a/test/Assembler/2002-08-19-BytecodeReader.llx
+++ b/test/Assembler/2002-08-19-BytecodeReader.llx
@@ -1,7 +1,7 @@
 ; Testcase that seems to break the bytecode reader.  This comes from the 
 ; "crafty" spec benchmark.
 ;
-; RUN: as < %s | opt -instcombine | dis | as
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | llvm-as
 
 %CHESS_POSITION = type { uint, int }
 
diff --git a/test/Assembler/2002-10-13-ConstantEncodingProblem.llx b/test/Assembler/2002-10-13-ConstantEncodingProblem.llx
index 8f12eb6..0634b9f 100644
--- a/test/Assembler/2002-10-13-ConstantEncodingProblem.llx
+++ b/test/Assembler/2002-10-13-ConstantEncodingProblem.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis
+; RUN: llvm-as < %s | llvm-dis
 
 %Domain = type { %Domain**, %Domain* }
 
diff --git a/test/Assembler/2003-05-03-BytecodeReaderProblem.llx b/test/Assembler/2003-05-03-BytecodeReaderProblem.llx
index 925fb4f..b8b82d9 100644
--- a/test/Assembler/2003-05-03-BytecodeReaderProblem.llx
+++ b/test/Assembler/2003-05-03-BytecodeReaderProblem.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis
+; RUN: llvm-as < %s | llvm-dis
 
 void %test() {
 	%tmp.123 = cast long cast ([5 x { ubyte, sbyte }]* getelementptr ([30 x [5 x { ubyte, sbyte }]]* null, long 0, long 0) to long) to int
diff --git a/test/Assembler/2003-05-12-MinIntProblem.llx b/test/Assembler/2003-05-12-MinIntProblem.llx
index ae54710..515ad0f 100644
--- a/test/Assembler/2003-05-12-MinIntProblem.llx
+++ b/test/Assembler/2003-05-12-MinIntProblem.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis | grep -- -2147483648
+; RUN: llvm-as < %s | llvm-dis | grep -- -2147483648
 
 int %foo() {
 	ret int -2147483648
diff --git a/test/Assembler/2003-05-15-AssemblerProblem.llx b/test/Assembler/2003-05-15-AssemblerProblem.llx
index 9b39390..e22d11d 100644
--- a/test/Assembler/2003-05-15-AssemblerProblem.llx
+++ b/test/Assembler/2003-05-15-AssemblerProblem.llx
@@ -1,7 +1,7 @@
 ; This bug was caused by two CPR's existing for the same global variable, 
 ; colliding in the Module level CPR map.
 
-; RUN: as < %s -o /dev/null -f
+; RUN: llvm-as < %s -o /dev/null -f
 
 void %test() {
         call void (...)* cast (void (short*, int)* %AddString to void (...)*)(short* null, int 0)
diff --git a/test/Assembler/2003-05-21-MalformedShiftCrash.llx b/test/Assembler/2003-05-21-MalformedShiftCrash.llx
index d340c0f..e56d2bb 100644
--- a/test/Assembler/2003-05-21-MalformedShiftCrash.llx
+++ b/test/Assembler/2003-05-21-MalformedShiftCrash.llx
@@ -1,4 +1,4 @@
 ; Found by inspection of the code
-; RUN: as < %s 2>&1 | grep "Shift constant expression"
+; RUN: llvm-as < %s 2>&1 | grep "Shift constant expression"
 
 global int shr (float 1.0, ubyte 2)
diff --git a/test/Assembler/2003-05-21-MalformedStructCrash.llx b/test/Assembler/2003-05-21-MalformedStructCrash.llx
index 0844437..c606aa0 100644
--- a/test/Assembler/2003-05-21-MalformedStructCrash.llx
+++ b/test/Assembler/2003-05-21-MalformedStructCrash.llx
@@ -1,4 +1,4 @@
 ; Found by inspection of the code
-; RUN: as < %s 2>&1 | grep "Illegal"
+; RUN: llvm-as < %s 2>&1 | grep "Illegal"
 
 global {} { int 7, float 1.0, int 7, int 8 }
diff --git a/test/Assembler/2003-06-17-InvokeDisassemble.llx b/test/Assembler/2003-06-17-InvokeDisassemble.llx
index d5bcc9b..a444dc9 100644
--- a/test/Assembler/2003-06-17-InvokeDisassemble.llx
+++ b/test/Assembler/2003-06-17-InvokeDisassemble.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis
+; RUN: llvm-as < %s | llvm-dis
 void %test() {
    invoke void %test() to label %Next except label %Next
 Next:
diff --git a/test/Assembler/2003-08-20-ConstantExprGEP-Fold.llx b/test/Assembler/2003-08-20-ConstantExprGEP-Fold.llx
index ab0927c..d93cf19 100644
--- a/test/Assembler/2003-08-20-ConstantExprGEP-Fold.llx
+++ b/test/Assembler/2003-08-20-ConstantExprGEP-Fold.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | opt -instcombine -simplifycfg | dis | not grep br
+; RUN: llvm-as < %s | opt -instcombine -simplifycfg | llvm-dis | not grep br
 
 %.str_1 = internal constant [6 x sbyte] c"_Bool\00"             ; <[6 x sbyte]*> [#uses=1]
 
diff --git a/test/Assembler/2003-08-21-ConstantExprCast-Fold.llx b/test/Assembler/2003-08-21-ConstantExprCast-Fold.llx
index f57dc37..453be5e 100644
--- a/test/Assembler/2003-08-21-ConstantExprCast-Fold.llx
+++ b/test/Assembler/2003-08-21-ConstantExprCast-Fold.llx
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis | not grep getelementptr
+; RUN: llvm-as < %s | llvm-dis | not grep getelementptr
 
 %A = external global { float }          ; <{ float }*> [#uses=1]
 global int* cast (float* getelementptr ({ float }* %A, long 0, ubyte 0) to int*)
diff --git a/test/Assembler/ConstantExprFoldCast.llx b/test/Assembler/ConstantExprFoldCast.llx
index 3dc6aac..48394dd 100644
--- a/test/Assembler/ConstantExprFoldCast.llx
+++ b/test/Assembler/ConstantExprFoldCast.llx
@@ -1,6 +1,6 @@
 ; This test checks to make sure that constant exprs fold in some simple situations
 
-; RUN: as < %s | dis | not grep cast
+; RUN: llvm-as < %s | llvm-dis | not grep cast
 
 %A = global int* cast (sbyte* null to int*)  ; Cast null -> fold
 %B = global int** cast (int** %A to int**)   ; Cast to same type -> fold