summaryrefslogtreecommitdiff
path: root/test/Linker/2003-08-23-GlobalVarLinking.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Linker/2003-08-23-GlobalVarLinking.ll')
-rw-r--r--test/Linker/2003-08-23-GlobalVarLinking.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Linker/2003-08-23-GlobalVarLinking.ll b/test/Linker/2003-08-23-GlobalVarLinking.ll
index 4eab96330b..0666545dd8 100644
--- a/test/Linker/2003-08-23-GlobalVarLinking.ll
+++ b/test/Linker/2003-08-23-GlobalVarLinking.ll
@@ -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'.