[llvm-commits] CVS: llvm/tools/gccld/Linker.cpp

Misha Brukman brukman at cs.uiuc.edu
Mon Nov 8 20:25:10 PST 2004



Changes in directory llvm/tools/gccld:

Linker.cpp updated: 1.29 -> 1.30
---
Log message:

Output the program name (in this case, gccld) with warning about invalid files


---
Diffs of the changes:  (+2 -1)

Index: llvm/tools/gccld/Linker.cpp
diff -u llvm/tools/gccld/Linker.cpp:1.29 llvm/tools/gccld/Linker.cpp:1.30
--- llvm/tools/gccld/Linker.cpp:1.29	Mon Nov  8 16:03:10 2004
+++ llvm/tools/gccld/Linker.cpp	Mon Nov  8 22:24:59 2004
@@ -346,7 +346,8 @@
         return true;
       }
     } else {
-      std::cerr << "Warning: invalid file `" << Pathname << "' ignored.\n";
+      std::cerr << progname << ": Warning: invalid file `" << Pathname 
+                << "' ignored.\n";
     }
   }
 






More information about the llvm-commits mailing list