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

Reid Spencer reid at x10sys.com
Fri Dec 17 16:19:43 PST 2004



Changes in directory llvm/tools/gccld:

gccld.cpp updated: 1.91 -> 1.92
---
Log message:

The CopyFile function got moved into the sys namespace.


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

Index: llvm/tools/gccld/gccld.cpp
diff -u llvm/tools/gccld/gccld.cpp:1.91 llvm/tools/gccld/gccld.cpp:1.92
--- llvm/tools/gccld/gccld.cpp:1.91	Thu Dec 16 17:04:20 2004
+++ llvm/tools/gccld/gccld.cpp	Fri Dec 17 18:19:32 2004
@@ -124,7 +124,7 @@
     std::cerr << "Could not find llvm-stub.exe executable!\n";
     exit(1);
   }
-  if (CopyFile(OutputFilename, llvmstub)) {
+  if (sys::CopyFile(OutputFilename, llvmstub)) {
     std::cerr << "Could not copy the llvm-stub.exe executable!\n";
     exit(1);
   }






More information about the llvm-commits mailing list