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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8558 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman
2003-09-16 15:29:54 +00:00
parent aad65f6c18
commit e78760e179
251 changed files with 251 additions and 251 deletions

View File

@@ -1,7 +1,7 @@
; Test that: extern int X[] and int X[] = { 1, 2, 3, 4 } are resolved
; correctly.
;
; RUN: as < %s | opt -funcresolve | dis | not grep external
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep external
%X = external global [0 x int]
%X = global [4 x int] [ int 1, int 2, int 3, int 4 ]

View File

@@ -1,7 +1,7 @@
; Test that: extern int X[] and int X[] = { 1, 2, 3, 4 } are resolved
; correctly. This doesn't have constantexprs
;
; RUN: as < %s | opt -funcresolve | dis | not grep external
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep external
;
%X = external global [0 x int]

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve -funcresolve | dis | not grep declare
; RUN: llvm-as < %s | opt -funcresolve -funcresolve | llvm-dis | not grep declare
declare void %qsortg(sbyte*, int, int)

View File

@@ -1,5 +1,5 @@
;
; RUN: as < %s | opt -funcresolve -instcombine | dis | not grep '\.\.\.'
; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | not grep '\.\.\.'
declare int %foo(...)
declare int %foo(int)

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
%__popcount_tab = external constant [0 x ubyte]
%__popcount_tab = constant [4 x ubyte] c"\00\01\01\02"

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve -disable-output
; RUN: llvm-as < %s | opt -funcresolve -disable-output
void %foo(int, int) {
ret void

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve | dis | not grep declare
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep declare
%Table = constant int(...)* %foo

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve | dis | not grep declare
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep declare
declare void %test(...)

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve | dis | not grep foo
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep foo
; The funcresolve pass was resolving the two foo's together in this test,
; adding a ConstantPointerRef to one of them. Then because of this

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
declare int %foo(int *%X)
declare int %foo(float *%X)

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | not grep call
; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | grep '\.\.\.' | not grep call
declare int %foo(...)

View File

@@ -1,6 +1,6 @@
; This shows where the function is called with the prototype indicating a
; return type exists, but it really doesn't.
; RUN: as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | not grep call
; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | grep '\.\.\.' | not grep call
declare int %foo(...)

View File

@@ -1,7 +1,7 @@
; This shows where the function is called with the prototype indicating a
; return type doesn't exists, but it really does.
;
; RUN: as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | not grep call
; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | grep '\.\.\.' | not grep call
declare void %foo(...)

View File

@@ -1,4 +1,4 @@
; RUN: as < %s | opt -funcresolve
; RUN: llvm-as < %s | opt -funcresolve
declare int %read(...)