`link' is being renamed to `llvm-link'.

llvm-svn: 8541
This commit is contained in:
Misha Brukman 2003-09-15 18:34:34 +00:00
parent f6778b68c2
commit cf0c744c42
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = link
TOOLNAME = llvm-link
USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
include $(LEVEL)/Makefile.common

View File

@ -2,7 +2,7 @@
// LLVM 'LINK' UTILITY
//
// This utility may be invoked in the following manner:
// link a.bc b.bc c.bc -o x.bc
// llvm-link a.bc b.bc c.bc -o x.bc
//
//===----------------------------------------------------------------------===//
@ -72,7 +72,7 @@ static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
if (FoundAFile)
std::cerr << "Bytecode file '" << FN << "' corrupt! "
<< "Use 'link -v ...' for more info.\n";
<< "Use 'llvm-link -v ...' for more info.\n";
else
std::cerr << "Could not locate bytecode file: '" << FN << "'\n";
return std::auto_ptr<Module>();