Echo the right tool name on error
authorChris Lattner <sabre@nondot.org>
Tue, 12 Mar 2002 15:41:36 +0000 (15:41 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 12 Mar 2002 15:41:36 +0000 (15:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1865 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccld/gccld.cpp

index c2aa8379a11c856e4bca528e9ef922cf1512db29..cb77bb03c064a34d80188af8c163bc58540ca149 100644 (file)
@@ -69,7 +69,7 @@ static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
 
   if (FoundAFile)
     cerr << "Bytecode file '" << FN << "' corrupt!  "
-         << "Use 'link -v ...' for more info.\n";
+         << "Use 'gccld -v ...' for more info.\n";
   else
     cerr << "Could not locate bytecode file: '" << FN << "'\n";
   return std::auto_ptr<Module>();