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

Jeff Cohen jeffc at jolt-lang.org
Sun Nov 5 11:32:28 PST 2006



Changes in directory llvm/tools/llvm-ld:

llvm-ld.cpp updated: 1.38 -> 1.39
---
Log message:

Unbreak VC++ build.

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

 llvm-ld.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/tools/llvm-ld/llvm-ld.cpp
diff -u llvm/tools/llvm-ld/llvm-ld.cpp:1.38 llvm/tools/llvm-ld/llvm-ld.cpp:1.39
--- llvm/tools/llvm-ld/llvm-ld.cpp:1.38	Fri Sep  1 15:35:17 2006
+++ llvm/tools/llvm-ld/llvm-ld.cpp	Sun Nov  5 13:31:28 2006
@@ -499,7 +499,7 @@
           // Get the program arguments
           sys::Path tmp_output("opt_result");
           std::string ErrMsg;
-          if (tmp_output.createTemporaryFileOnDisk(&ErrMsg)) {
+          if (tmp_output.createTemporaryFileOnDisk(true)) {
             return PrintAndReturn(ErrMsg);
           }
           const char* args[4];






More information about the llvm-commits mailing list