diff options
-rw-r--r-- | tools/llvm-link/Makefile | 2 | ||||
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvm-link/Makefile b/tools/llvm-link/Makefile index 333236b568..00780c660b 100644 --- a/tools/llvm-link/Makefile +++ b/tools/llvm-link/Makefile @@ -1,6 +1,6 @@ LEVEL = ../.. -TOOLNAME = link +TOOLNAME = llvm-link USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a include $(LEVEL)/Makefile.common diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index 5c9e21c0b0..b276220698 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -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>(); |