[llvm-commits] CVS: llvm/test/Regression/Linker/2002-07-17-GlobalFail.ll 2002-07-17-LinkTest2.ll 2002-08-20-ConstantExpr.ll 2003-01-30-LinkerRename.ll 2003-01-30-LinkerTypeRename.ll 2003-04-21-Linkage.ll 2003-04-23-LinkOnceLost.ll 2003-04-26-NullPtrLinkProblem.ll 2003-05-15-TypeProblem.ll 2003-05-31-LinkerRename.ll 2003-06-02-TypeResolveProblem.ll 2003-06-02-TypeResolveProblem2.ll 2003-08-20-OpaqueTypeResolve.ll 2003-08-23-GlobalVarLinking.ll 2003-08-23-RecursiveOpaqueTypeResolve.ll 2003-08-24-InheritPtrSize.ll 2003-08-28-TypeResolvesGlobal.ll 2003-08-28-TypeResolvesGlobal2.ll 2003-08-28-TypeResolvesGlobal3.ll AppendingLinkage.ll AppendingLinkage2.ll LinkOnce.ll testlink1.ll
Misha Brukman
brukman at cs.uiuc.edu
Mon Sep 15 15:05:01 PDT 2003
Changes in directory llvm/test/Regression/Linker:
2002-07-17-GlobalFail.ll updated: 1.2 -> 1.3
2002-07-17-LinkTest2.ll updated: 1.3 -> 1.4
2002-08-20-ConstantExpr.ll updated: 1.3 -> 1.4
2003-01-30-LinkerRename.ll updated: 1.2 -> 1.3
2003-01-30-LinkerTypeRename.ll updated: 1.2 -> 1.3
2003-04-21-Linkage.ll updated: 1.2 -> 1.3
2003-04-23-LinkOnceLost.ll updated: 1.2 -> 1.3
2003-04-26-NullPtrLinkProblem.ll updated: 1.2 -> 1.3
2003-05-15-TypeProblem.ll updated: 1.2 -> 1.3
2003-05-31-LinkerRename.ll updated: 1.4 -> 1.5
2003-06-02-TypeResolveProblem.ll updated: 1.2 -> 1.3
2003-06-02-TypeResolveProblem2.ll updated: 1.2 -> 1.3
2003-08-20-OpaqueTypeResolve.ll updated: 1.1 -> 1.2
2003-08-23-GlobalVarLinking.ll updated: 1.2 -> 1.3
2003-08-23-RecursiveOpaqueTypeResolve.ll updated: 1.2 -> 1.3
2003-08-24-InheritPtrSize.ll updated: 1.1 -> 1.2
2003-08-28-TypeResolvesGlobal.ll updated: 1.1 -> 1.2
2003-08-28-TypeResolvesGlobal2.ll updated: 1.1 -> 1.2
2003-08-28-TypeResolvesGlobal3.ll updated: 1.1 -> 1.2
AppendingLinkage.ll updated: 1.3 -> 1.4
AppendingLinkage2.ll updated: 1.2 -> 1.3
LinkOnce.ll updated: 1.2 -> 1.3
testlink1.ll updated: 1.9 -> 1.10
---
Log message:
Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
---
Diffs of the changes:
Index: llvm/test/Regression/Linker/2002-07-17-GlobalFail.ll
diff -u llvm/test/Regression/Linker/2002-07-17-GlobalFail.ll:1.2 llvm/test/Regression/Linker/2002-07-17-GlobalFail.ll:1.3
--- llvm/test/Regression/Linker/2002-07-17-GlobalFail.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2002-07-17-GlobalFail.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: as < %s > %t.bc
-; RUN: echo | as > %t.tmp.bc
-; RUN: link %t.tmp.bc %t.bc
+; RUN: llvm-as < %s > %t.bc
+; RUN: echo | llvm-as > %t.tmp.bc
+; RUN: llvm-link %t.tmp.bc %t.bc
%X = constant int 5
%Y = internal global [2 x int*] [ int* %X, int * %X]
Index: llvm/test/Regression/Linker/2002-07-17-LinkTest2.ll
diff -u llvm/test/Regression/Linker/2002-07-17-LinkTest2.ll:1.3 llvm/test/Regression/Linker/2002-07-17-LinkTest2.ll:1.4
--- llvm/test/Regression/Linker/2002-07-17-LinkTest2.ll:1.3 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2002-07-17-LinkTest2.ll Mon Sep 15 15:04:28 2003
@@ -1,8 +1,8 @@
; This fails linking when it is linked with an empty file as the first object file
-; RUN: as > %t1.bc < /dev/null
-; RUN: as < %s > %t2.bc
-; RUN: link %t[12].bc
+; RUN: llvm-as > %t1.bc < /dev/null
+; RUN: llvm-as < %s > %t2.bc
+; RUN: llvm-link %t[12].bc
%work = global int (int, int)* %zip
Index: llvm/test/Regression/Linker/2002-08-20-ConstantExpr.ll
diff -u llvm/test/Regression/Linker/2002-08-20-ConstantExpr.ll:1.3 llvm/test/Regression/Linker/2002-08-20-ConstantExpr.ll:1.4
--- llvm/test/Regression/Linker/2002-08-20-ConstantExpr.ll:1.3 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2002-08-20-ConstantExpr.ll Mon Sep 15 15:04:28 2003
@@ -1,8 +1,8 @@
; This fails linking when it is linked with an empty file as the first object file
-; RUN: as > %t.LinkTest.bc < /dev/null
-; RUN: as < %s > %t.bc
-; RUN: link %t.LinkTest.bc %t.bc
+; RUN: llvm-as > %t.LinkTest.bc < /dev/null
+; RUN: llvm-as < %s > %t.bc
+; RUN: llvm-link %t.LinkTest.bc %t.bc
%work = global int 4
%test = global int* getelementptr( int* %work, long 1)
Index: llvm/test/Regression/Linker/2003-01-30-LinkerRename.ll
diff -u llvm/test/Regression/Linker/2003-01-30-LinkerRename.ll:1.2 llvm/test/Regression/Linker/2003-01-30-LinkerRename.ll:1.3
--- llvm/test/Regression/Linker/2003-01-30-LinkerRename.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-01-30-LinkerRename.ll Mon Sep 15 15:04:28 2003
@@ -1,9 +1,9 @@
; This fails because the linker renames the external symbol not the internal
; one...
-; RUN: echo "implementation internal int %foo() { ret int 7 }" | as > %t.1.bc
-; RUN: as < %s > %t.2.bc
-; RUN: link %t.[12].bc | dis | grep '%foo()' | grep -v internal
+; RUN: echo "implementation internal int %foo() { ret int 7 }" | llvm-as > %t.1.bc
+; RUN: llvm-as < %s > %t.2.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis | grep '%foo()' | grep -v internal
implementation
int %foo() { ret int 0 }
Index: llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll
diff -u llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll:1.2 llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll:1.3
--- llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll Mon Sep 15 15:04:28 2003
@@ -1,9 +1,9 @@
; This fails because the linker renames the non-opaque type not the opaque
; one...
-; RUN: echo "%Ty = type opaque" | as > %t.1.bc
-; RUN: as < %s > %t.2.bc
-; RUN: link %t.[12].bc | dis | grep '%Ty ' | grep -v opaque
+; RUN: echo "%Ty = type opaque" | llvm-as > %t.1.bc
+; RUN: llvm-as < %s > %t.2.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis | grep '%Ty ' | grep -v opaque
%Ty = type int
Index: llvm/test/Regression/Linker/2003-04-21-Linkage.ll
diff -u llvm/test/Regression/Linker/2003-04-21-Linkage.ll:1.2 llvm/test/Regression/Linker/2003-04-21-Linkage.ll:1.3
--- llvm/test/Regression/Linker/2003-04-21-Linkage.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-04-21-Linkage.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: echo "%X = linkonce global int 5 implementation linkonce int %foo() { ret int 7 }" | as > %t.1.bc
-; RUN: as < %s > %t.2.bc
-; RUN: link %t.[12].bc
+; RUN: echo "%X = linkonce global int 5 implementation linkonce int %foo() { ret int 7 }" | llvm-as > %t.1.bc
+; RUN: llvm-as < %s > %t.2.bc
+; RUN: llvm-link %t.[12].bc
%X = external global int
implementation
Index: llvm/test/Regression/Linker/2003-04-23-LinkOnceLost.ll
diff -u llvm/test/Regression/Linker/2003-04-23-LinkOnceLost.ll:1.2 llvm/test/Regression/Linker/2003-04-23-LinkOnceLost.ll:1.3
--- llvm/test/Regression/Linker/2003-04-23-LinkOnceLost.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-04-23-LinkOnceLost.ll Mon Sep 15 15:04:28 2003
@@ -1,8 +1,8 @@
; This fails because the linker renames the non-opaque type not the opaque
; one...
-; RUN: echo "implementation linkonce void %foo() { ret void } " | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc | dis | grep foo | grep linkonce
+; RUN: echo "implementation linkonce void %foo() { ret void } " | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis | grep foo | grep linkonce
declare void %foo()
Index: llvm/test/Regression/Linker/2003-04-26-NullPtrLinkProblem.ll
diff -u llvm/test/Regression/Linker/2003-04-26-NullPtrLinkProblem.ll:1.2 llvm/test/Regression/Linker/2003-04-26-NullPtrLinkProblem.ll:1.3
--- llvm/test/Regression/Linker/2003-04-26-NullPtrLinkProblem.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-04-26-NullPtrLinkProblem.ll Mon Sep 15 15:04:28 2003
@@ -1,9 +1,9 @@
; This one fails because the LLVM runtime is allowing two null pointers of
; the same type to be created!
-; RUN: echo "%T = type int" | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc
+; RUN: echo "%T = type int" | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc
%T = type opaque
Index: llvm/test/Regression/Linker/2003-05-15-TypeProblem.ll
diff -u llvm/test/Regression/Linker/2003-05-15-TypeProblem.ll:1.2 llvm/test/Regression/Linker/2003-05-15-TypeProblem.ll:1.3
--- llvm/test/Regression/Linker/2003-05-15-TypeProblem.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-05-15-TypeProblem.ll Mon Sep 15 15:04:28 2003
@@ -1,9 +1,9 @@
; This one fails because the LLVM runtime is allowing two null pointers of
; the same type to be created!
-; RUN: echo "%S = type { %T*} %T = type opaque" | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc
+; RUN: echo "%S = type { %T*} %T = type opaque" | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc
%S = type { %T* }
%T = type int
Index: llvm/test/Regression/Linker/2003-05-31-LinkerRename.ll
diff -u llvm/test/Regression/Linker/2003-05-31-LinkerRename.ll:1.4 llvm/test/Regression/Linker/2003-05-31-LinkerRename.ll:1.5
--- llvm/test/Regression/Linker/2003-05-31-LinkerRename.ll:1.4 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-05-31-LinkerRename.ll Mon Sep 15 15:04:28 2003
@@ -1,11 +1,11 @@
-; The funcresolve pass will (intentionally) link an _internal_ function body with an
+; The funcresolve pass will (intentionally) llvm-link an _internal_ function body with an
; external declaration. Because of this, if we LINK an internal function body into
; a program that already has an external declaration for the function name, we must
; rename the internal function to something that does not conflict.
-; RUN: echo "implementation internal int %foo() { ret int 7 }" | as > %t.1.bc
-; RUN: as < %s > %t.2.bc
-; RUN: link %t.[12].bc | dis | grep 'internal' | not grep '%foo('
+; RUN: echo "implementation internal int %foo() { ret int 7 }" | llvm-as > %t.1.bc
+; RUN: llvm-as < %s > %t.2.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis | grep 'internal' | not grep '%foo('
implementation
declare int %foo()
Index: llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem.ll
diff -u llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem.ll:1.2 llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem.ll:1.3
--- llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: echo "%T = type opaque" | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc
+; RUN: echo "%T = type opaque" | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc
%T = type opaque
%a = constant { %T* } { %T* null }
Index: llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem2.ll
diff -u llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem2.ll:1.2 llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem2.ll:1.3
--- llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem2.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/2003-06-02-TypeResolveProblem2.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: echo "%T = type int" | as > %t.1.bc
-; RUN: as < %s > %t.2.bc
-; RUN: link %t.[12].bc
+; RUN: echo "%T = type int" | llvm-as > %t.1.bc
+; RUN: llvm-as < %s > %t.2.bc
+; RUN: llvm-link %t.[12].bc
%T = type opaque
Index: llvm/test/Regression/Linker/2003-08-20-OpaqueTypeResolve.ll
diff -u llvm/test/Regression/Linker/2003-08-20-OpaqueTypeResolve.ll:1.1 llvm/test/Regression/Linker/2003-08-20-OpaqueTypeResolve.ll:1.2
--- llvm/test/Regression/Linker/2003-08-20-OpaqueTypeResolve.ll:1.1 Wed Aug 20 14:22:28 2003
+++ llvm/test/Regression/Linker/2003-08-20-OpaqueTypeResolve.ll Mon Sep 15 15:04:28 2003
@@ -1,7 +1,7 @@
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type { int, int* }" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[12].bc
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "%S = type { int, int* }" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[12].bc
%T = type opaque
%S = type { int, %T* }
Index: llvm/test/Regression/Linker/2003-08-23-GlobalVarLinking.ll
diff -u llvm/test/Regression/Linker/2003-08-23-GlobalVarLinking.ll:1.2 llvm/test/Regression/Linker/2003-08-23-GlobalVarLinking.ll:1.3
--- llvm/test/Regression/Linker/2003-08-23-GlobalVarLinking.ll:1.2 Sat Aug 23 15:30:29 2003
+++ llvm/test/Regression/Linker/2003-08-23-GlobalVarLinking.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = external global { int, opaque* } declare void %F(opaque*)" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[12].bc | dis | not grep opaque
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "%S = external global { int, opaque* } declare void %F(opaque*)" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[12].bc | llvm-dis | not grep opaque
; After linking this testcase, there should be no opaque types left. The two
; S's should cause the opaque type to be resolved to 'int'.
Index: llvm/test/Regression/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll
diff -u llvm/test/Regression/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll:1.2 llvm/test/Regression/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll:1.3
--- llvm/test/Regression/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll:1.2 Mon Aug 25 12:29:40 2003
+++ llvm/test/Regression/Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll Mon Sep 15 15:04:28 2003
@@ -1,8 +1,8 @@
; It's a bad idea to go recursively traipsing through types without a safety
; net.
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type { %S*, int* }" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[12].bc
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "%S = type { %S*, int* }" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[12].bc
%S = type { %S*, opaque* }
Index: llvm/test/Regression/Linker/2003-08-24-InheritPtrSize.ll
diff -u llvm/test/Regression/Linker/2003-08-24-InheritPtrSize.ll:1.1 llvm/test/Regression/Linker/2003-08-24-InheritPtrSize.ll:1.2
--- llvm/test/Regression/Linker/2003-08-24-InheritPtrSize.ll:1.1 Sun Aug 24 14:23:31 2003
+++ llvm/test/Regression/Linker/2003-08-24-InheritPtrSize.ll Mon Sep 15 15:04:28 2003
@@ -1,9 +1,9 @@
; Linking these a module with a specified pointer size to one without a
; specified pointer size should not cause a warning!
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[12].bc 2>&1 | not grep WARNING
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[12].bc 2>&1 | not grep WARNING
target pointersize = 64
Index: llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal.ll
diff -u llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal.ll:1.1 llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal.ll:1.2
--- llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal.ll:1.1 Thu Aug 28 23:40:34 2003
+++ llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[21].bc
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[21].bc
%S = type opaque
Index: llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal2.ll
diff -u llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal2.ll:1.1 llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal2.ll:1.2
--- llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal2.ll:1.1 Thu Aug 28 23:54:23 2003
+++ llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal2.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[21].bc
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[21].bc
%S = type opaque
Index: llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal3.ll
diff -u llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal3.ll:1.1 llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal3.ll:1.2
--- llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal3.ll:1.1 Fri Aug 29 00:29:38 2003
+++ llvm/test/Regression/Linker/2003-08-28-TypeResolvesGlobal3.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: as < %s > Output/%s.out1.bc
-; RUN: echo "%S = type int" | as > Output/%s.out2.bc
-; RUN: link Output/%s.out[21].bc
+; RUN: llvm-as < %s > Output/%s.out1.bc
+; RUN: echo "%S = type int" | llvm-as > Output/%s.out2.bc
+; RUN: llvm-link Output/%s.out[21].bc
%S = type opaque
Index: llvm/test/Regression/Linker/AppendingLinkage.ll
diff -u llvm/test/Regression/Linker/AppendingLinkage.ll:1.3 llvm/test/Regression/Linker/AppendingLinkage.ll:1.4
--- llvm/test/Regression/Linker/AppendingLinkage.ll:1.3 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/AppendingLinkage.ll Mon Sep 15 15:04:28 2003
@@ -1,8 +1,8 @@
; Test that appending linkage works correctly.
-; RUN: echo "%X = appending global [1x int] [int 8]" | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc | dis | grep 7 | grep 4 | grep 8
+; RUN: echo "%X = appending global [1x int] [int 8]" | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis | grep 7 | grep 4 | grep 8
%X = appending global [2 x int] [int 7, int 4]
Index: llvm/test/Regression/Linker/AppendingLinkage2.ll
diff -u llvm/test/Regression/Linker/AppendingLinkage2.ll:1.2 llvm/test/Regression/Linker/AppendingLinkage2.ll:1.3
--- llvm/test/Regression/Linker/AppendingLinkage2.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/AppendingLinkage2.ll Mon Sep 15 15:04:28 2003
@@ -1,7 +1,7 @@
; Test that appending linkage works correctly when arrays are the same size.
-; RUN: echo "%X = appending global [1x int] [int 8]" | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc | dis | grep 7 | grep 8
+; RUN: echo "%X = appending global [1x int] [int 8]" | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis | grep 7 | grep 8
%X = appending global [1 x int] [int 7]
Index: llvm/test/Regression/Linker/LinkOnce.ll
diff -u llvm/test/Regression/Linker/LinkOnce.ll:1.2 llvm/test/Regression/Linker/LinkOnce.ll:1.3
--- llvm/test/Regression/Linker/LinkOnce.ll:1.2 Sat Sep 6 10:15:03 2003
+++ llvm/test/Regression/Linker/LinkOnce.ll Mon Sep 15 15:04:28 2003
@@ -1,8 +1,8 @@
; This fails because the linker renames the non-opaque type not the opaque
; one...
-; RUN: echo "%X = linkonce global int 8" | as > %t.2.bc
-; RUN: as < %s > %t.1.bc
-; RUN: link %t.[12].bc | dis
+; RUN: echo "%X = linkonce global int 8" | llvm-as > %t.2.bc
+; RUN: llvm-as < %s > %t.1.bc
+; RUN: llvm-link %t.[12].bc | llvm-dis
%X = linkonce global int 7
Index: llvm/test/Regression/Linker/testlink1.ll
diff -u llvm/test/Regression/Linker/testlink1.ll:1.9 llvm/test/Regression/Linker/testlink1.ll:1.10
--- llvm/test/Regression/Linker/testlink1.ll:1.9 Sat Sep 6 10:15:04 2003
+++ llvm/test/Regression/Linker/testlink1.ll Mon Sep 15 15:04:28 2003
@@ -1,6 +1,6 @@
-; RUN: as < %s > %t.bc
-; RUN: as < `dirname %s`/testlink2.ll > %t2.bc
-; RUN: link %t.bc %t2.bc
+; RUN: llvm-as < %s > %t.bc
+; RUN: llvm-as < `dirname %s`/testlink2.ll > %t2.bc
+; RUN: llvm-link %t.bc %t2.bc
%MyVar = external global int
%MyIntList = global { \2 *, int } { { \2, int }* null, int 17 }
More information about the llvm-commits
mailing list