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

Reid Spencer reid at x10sys.com
Fri Nov 5 14:15:48 PST 2004



Changes in directory llvm/tools/llvm-ld:

Linker.cpp updated: 1.3 -> 1.4
---
Log message:

Stop propagating method names that violate the coding standard

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

Index: llvm/tools/llvm-ld/Linker.cpp
diff -u llvm/tools/llvm-ld/Linker.cpp:1.3 llvm/tools/llvm-ld/Linker.cpp:1.4
--- llvm/tools/llvm-ld/Linker.cpp:1.3	Wed Oct 27 18:18:45 2004
+++ llvm/tools/llvm-ld/Linker.cpp	Fri Nov  5 16:15:36 2004
@@ -45,7 +45,7 @@
                           bool SharedObjectOnly) {
   // Determine if the pathname can be found as it stands.
   sys::Path FilePath;
-  if (FilePath.set_file(Filename) && FilePath.readable())
+  if (FilePath.setFile(Filename) && FilePath.readable())
     return Filename;
 
   // Ask the System Path object to locate the library. This ensures that






More information about the llvm-commits mailing list