[llvm-commits] CVS: llvm/tools/llvm-link/llvm-link.cpp

Reid Spencer reid at x10sys.com
Fri Dec 10 16:14:29 PST 2004



Changes in directory llvm/tools/llvm-link:

llvm-link.cpp updated: 1.50 -> 1.51
---
Log message:

Path::get -> Path::toString

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

Index: llvm/tools/llvm-link/llvm-link.cpp
diff -u llvm/tools/llvm-link/llvm-link.cpp:1.50 llvm/tools/llvm-link/llvm-link.cpp:1.51
--- llvm/tools/llvm-link/llvm-link.cpp:1.50	Sun Nov 14 17:25:32 2004
+++ llvm/tools/llvm-link/llvm-link.cpp	Fri Dec 10 18:14:15 2004
@@ -58,7 +58,7 @@
   std::string ErrorMessage;
   if (Filename.exists()) {
     if (Verbose) std::cerr << "Loading '" << Filename.c_str() << "'\n";
-    Module* Result = ParseBytecodeFile(Filename.get(), &ErrorMessage);
+    Module* Result = ParseBytecodeFile(Filename.toString(), &ErrorMessage);
     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
 
     if (Verbose) {






More information about the llvm-commits mailing list