Renamed `as' => `llvm-as', `dis' => `llvm-dis'.
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 15 Sep 2003 20:02:53 +0000 (20:02 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 15 Sep 2003 20:02:53 +0000 (20:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8544 91177308-0d34-0410-b5e6-96231b3b80d8

40 files changed:
test/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll
test/Analysis/DSGraph/buglobals.ll
test/Analysis/DSGraph/constantize.ll
test/Analysis/DSGraph/gcsetest.ll
test/Analysis/DSGraph/incompletenode.ll
test/Analysis/DSGraph/mustalias.ll
test/Assembler/2002-04-07-HexFloatConstants.llx
test/Assembler/2002-04-07-InfConstant.llx
test/Assembler/2002-04-29-NameBinding.llx
test/Assembler/2002-07-08-HugePerformanceProblem.llx
test/Assembler/2002-07-14-InternalLossage.llx
test/Assembler/2002-07-14-OpaqueType.llx
test/Assembler/2002-07-25-ParserAssertionFailure.llx
test/Assembler/2002-07-25-QuoteInString.llx
test/Assembler/2002-07-25-ReturnPtrFunction.llx
test/Assembler/2002-07-31-SlashInString.llx
test/Assembler/2002-08-16-ConstExprInlined.llx
test/Assembler/2002-08-19-BytecodeReader.llx
test/Assembler/2002-10-13-ConstantEncodingProblem.llx
test/Assembler/2003-05-03-BytecodeReaderProblem.llx
test/Assembler/2003-05-12-MinIntProblem.llx
test/Assembler/2003-05-15-AssemblerProblem.llx
test/Assembler/2003-05-21-MalformedShiftCrash.llx
test/Assembler/2003-05-21-MalformedStructCrash.llx
test/Assembler/2003-06-17-InvokeDisassemble.llx
test/Assembler/2003-08-20-ConstantExprGEP-Fold.llx
test/Assembler/2003-08-21-ConstantExprCast-Fold.llx
test/Assembler/ConstantExprFoldCast.llx
test/CBackend/2003-06-23-PromotedExprs.llx
test/CBackend/2003-06-28-LinkOnceGlobalVars.llx
test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
test/CodeGen/CBackend/2003-06-28-LinkOnceGlobalVars.llx
test/CodeGen/X86/2002-12-23-LocalRAProblem.llx
test/CodeGen/X86/2002-12-23-SubProblem.llx
test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx
test/CodeGen/X86/2003-08-23-DeadBlockTest.llx
test/ExecutionEngine/2003-01-04-PhiTest.ll
test/ExecutionEngine/2003-05-06-LivenessClobber.llx
test/ExecutionEngine/2003-05-07-ArgumentTest.llx
test/Jello/2003-08-04-PhysRegLiveFailure.llx

index be9ee2c8f0a63b6a7fa2bac4dd2a9c2f53555e5f..ed49a85f11d3386f3039e2f09cbeac27e4de9854 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse | dis | not grep load
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse | llvm-dis | not grep load
 %T = type { int*, int* }
 
 int %main() {
index 11fc72c429e55eeb8dfc65e5217c53010436f9a1..c3bc745686ad56a133589e156c6ed7283307ec6f 100644 (file)
@@ -1,7 +1,7 @@
 ; This tests to make sure that G ends up in the globals graph of the BU pass.
 ; If it is not, then %G will get converted to a 'constant' from a 'global'
 ;
-; RUN: as < %s | opt -ds-opt -globaldce | dis | grep %G
+; RUN: llvm-as < %s | opt -ds-opt -globaldce | llvm-dis | grep %G
 
 
 %G = internal global int 0             ; <int*> [#uses=2]
index 08f033837232ca0b566395050cc8076952391778..fa7c12f5d8595536af3ca3993e59a76799609439 100644 (file)
@@ -1,6 +1,6 @@
 ; Make sure that the ds-opt pass is constantizing globals
 ;
-; RUN: as < %s | opt -ds-opt | dis | grep %G | grep constant
+; RUN: llvm-as < %s | opt -ds-opt | llvm-dis | grep %G | grep constant
 
 
 %G = internal global int 0             ; <int*> [#uses=2]
index 7c2aa39ffb93bb8e6a93a5c5fa6754006a5ef338..37600a890035197ec20381157d71a1fb04129406 100644 (file)
@@ -1,7 +1,7 @@
 ; Test that GCSE uses ds-aa to do alias analysis, which is capable of 
 ; disambiguating some cases.
 
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine -dce | dis | not grep ELIM
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine -dce | llvm-dis | not grep ELIM
 
 %intpair = type {int*, int*}
 implementation
index c6f0ad79a20be04a5b8b3e3684d84c7c6ee22724..5dffaabff0b251c8448a9cd0b1f781a282382f4c 100644 (file)
@@ -1,7 +1,7 @@
 ; This test was failing because the globals X and Y are marked incomplete
 ; in the TD graph for %test
 
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine | dis | not grep seteq
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine | llvm-dis | not grep seteq
 
 %X = internal global int 20
 %Y = internal global int* null
index e9e0ed31c97c68e73635e7ffd1359aa4e3f10f15..d9ff09416409c77315e1488bbe5249577507b8a1 100644 (file)
@@ -1,6 +1,6 @@
 ; Test that ds-aa is returning must-alias information when it can.
 
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse | dis | not grep load
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse | llvm-dis | not grep load
 
 %X = internal global int 20
 
index 5411faad3ba52acd8038f448dac06ef2a5e45c95..f740c28cebcf26ede28c7382e4520a02d6e43afa 100644 (file)
@@ -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
index 81ac678c429917fee6c594b64acbf1c2e46fa8c6..8ca7450bf74193adb675adcd25e9ab1b882f5250 100644 (file)
@@ -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
 
index 29378a357c9431d9346983af6be7eff9ad537709..88ad4936067d8c64613eea417376288c13cc0403 100644 (file)
@@ -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
index 6335c8bce85134f2fdef0563836aa2454074b5f7..46caeaed469e0686f204aadf1f742ed00f8058ca 100644 (file)
@@ -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 }
index faf422341f1e14c877229df35c1817dde92b3c3d..31469649c2cf93e70ed0a402e251c9a147fc6abc 100644 (file)
@@ -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
index d6d5a83276aece7b0963ac9d42a7b407f4cf9e05..b4de7e720f7ee97c341896f94380a4227a4ff54c 100644 (file)
@@ -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
index 8c75423621f1771fef8add334a4668a23aecccf6..9e44afaeab79955af23baa661d6a673c1b85ee06 100644 (file)
@@ -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)
 
index 8da701814e23eeafefe80c4367435bc026b6675e..156f97963b978ab6ae542d08c2f7b0b492538842 100644 (file)
@@ -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"
index ea408600429c040a477009554b388e21b1c2ef4b..354fa54be986e552a5d6bec590484b86ec8c5260 100644 (file)
@@ -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)
 
index 5b6daf0b1b95abed557d09f75eb2518ef63d92f3..4408f0a8bb45a70f9b2d41e8c1ea65eb9dbb61e8 100644 (file)
@@ -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"
index 37d94248c4744a54867d7fda531d55ccadcf7d5d..a88dc6ad88b75dcbbfce99738ffcbc1a3d360d1e 100644 (file)
@@ -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]
 
index 302a30ae6a5f1f8ec7c30cdff295ef989dfcbb6e..3e497618015cfdb7cdca8a1c3d2ee11765fba756 100644 (file)
@@ -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 }
 
index 8f12eb65caed79bc523802d5cbcc52a0e7b4422f..0634b9f43044f86117479768755c5547e4957cdc 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis
+; RUN: llvm-as < %s | llvm-dis
 
 %Domain = type { %Domain**, %Domain* }
 
index 925fb4fa82074bdb14c5aa80d6aeb5ba6593b4a4..b8b82d94d1fdf51ebab6366ce9babfecaaf93a55 100644 (file)
@@ -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
index ae54710b6b4281dcb83166eed693ead037fe5757..515ad0f9fe185034d2ee55ecca14880a7eb0212f 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis | grep -- -2147483648
+; RUN: llvm-as < %s | llvm-dis | grep -- -2147483648
 
 int %foo() {
        ret int -2147483648
index 9b39390f236d03859653fac52462ff5f13dc8d62..e22d11d6cbf6d8b16995a47e8a5b610d5cde7e0d 100644 (file)
@@ -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)
index d340c0f2b85b1eed30944feb460608b147cc5ac4..e56d2bb75f086143489ced5f6bddf4283ca6ecaa 100644 (file)
@@ -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)
index 0844437af470f572442e3c34436767f77d6f2457..c606aa03a24394a98de3d9ee9826f55d2a1b6c1e 100644 (file)
@@ -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 }
index d5bcc9b46fa903d184b946044e6300b0866e3310..a444dc9b81b9854dc38b2f5be7579629e8e656a5 100644 (file)
@@ -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:
index ab0927c758e5b54ead37fdc1c9fea96a19512a44..d93cf19e49e8dbe0b5158d4d0b2694f31b9c943f 100644 (file)
@@ -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]
 
index f57dc375778d3d588768bdb865264d4bea023f73..453be5ec0f78c6029f922209f44b14ee9469583b 100644 (file)
@@ -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*)
index 3dc6aacb2746ee62553ffeaa089d891c1d47533b..48394ddfab425604616a2b89111764a58b2e47fe 100644 (file)
@@ -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
index f678b83c3491714daff139271de0c1f66ab57b4c..47ecc82d044ff613654caee2220755890c3facb2 100644 (file)
@@ -1,5 +1,5 @@
 
-; RUN: as < %s | dis -c > f1.cbe.c
+; RUN: llvm-as < %s | llvm-dis -c > f1.cbe.c
 ; RUN: gcc -B/usr/bin/ f1.cbe.c -o f1.cbe
 ; RUN: ./f1.cbe
 
index e135f2ff5c96b2b61d3ea130627775e73f720e3d..2281ffa39c05e9c75284d21225c043c163e5dbc8 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis -c | grep common | grep X
+; RUN: llvm-as < %s | llvm-dis -c | grep common | grep X
 
 %X = linkonce global int 5
 
index f678b83c3491714daff139271de0c1f66ab57b4c..47ecc82d044ff613654caee2220755890c3facb2 100644 (file)
@@ -1,5 +1,5 @@
 
-; RUN: as < %s | dis -c > f1.cbe.c
+; RUN: llvm-as < %s | llvm-dis -c > f1.cbe.c
 ; RUN: gcc -B/usr/bin/ f1.cbe.c -o f1.cbe
 ; RUN: ./f1.cbe
 
index e135f2ff5c96b2b61d3ea130627775e73f720e3d..2281ffa39c05e9c75284d21225c043c163e5dbc8 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | dis -c | grep common | grep X
+; RUN: llvm-as < %s | llvm-dis -c | grep common | grep X
 
 %X = linkonce global int 5
 
index a049bc96d0e06b35e955bee6bb2a4b9b6062df3d..05b760a5c5eceaf82f33e42313299386f745f53c 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | lli -force-interpreter=false -disable-local-ra=false
+; RUN: llvm-as < %s | lli -force-interpreter=false -disable-local-ra=false
 ;-print-machineinstrs 
 
 int %main() {
index 394f9ab3f67201b0653e683a4c21a4679de2d184..2782325484122e8ffffbfd4106fa9403d3bc7a16 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | lli -force-interpreter=false -disable-local-ra
+; RUN: llvm-as < %s | lli -force-interpreter=false -disable-local-ra
 
 int %main(int %B) {
        ;%B = add int 0, 1
index c3f463523649ae72d3e83e5e3ddbddb65a9877da..71ba4cdf639b3c4ecedd2e6df8719c05097e297a 100644 (file)
@@ -3,7 +3,7 @@
 ; it makes a ton of annoying overlapping live ranges.  This code should not
 ; cause spills!
 ;
-; RUN: as < %s | lli -stats 2>&1 | not grep spilled
+; RUN: llvm-as < %s | lli -stats 2>&1 | not grep spilled
 
 target endian = little
 target pointersize = 32
index a8b2944216c39d93802997a21c11565c9f86bc41..a0f8362667caf32e8d5aa65f560ed15504406871 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | llc -march=x86
+; RUN: llvm-as < %s | llc -march=x86
 
 implementation
 
index 59d5fded0c390bc69440db56b1a970e9b6eaef2b..144ace7cbc9792d8e2bf658720874b5a8206da66 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | lli -force-interpreter=false
+; RUN: llvm-as < %s | lli -force-interpreter=false
 
 int %main() {
        br label %Loop
index 8f3eb3b20affae9e55b697aff143cd3aed9806cb..d3e5e0475c28b7aff3a42f67242aed3e71f97597 100644 (file)
@@ -1,6 +1,6 @@
 ; This testcase shoudl return with an exit code of 1.
 ;
-; RUN: as < %s | not lli -force-interpreter=false
+; RUN: llvm-as < %s | not lli -force-interpreter=false
 
 target endian = little
 target pointersize = 32
index 65864771e4fa62769f59b4275709399a5fb0f535..ac8ac342c6b69773baaaedf9027ca6190fa25b08 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | lli -force-interpreter=false - test
+; RUN: llvm-as < %s | lli -force-interpreter=false - test
 
 target endian = little
 target pointersize = 32
index a28823eed458c14d03882dc03d69b9db168a82a3..2bc3aebc2a81ba7577761427ac3bce632e277c1f 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: as < %s | llc -march=x86 
+; RUN: llvm-as < %s | llc -march=x86 
 
 target endian = big         ; We need the byteswaps for this test!
 target pointersize = 64