[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 19 16:55:01 PDT 2003
Changes in directory llvm/tools/bugpoint:
ExecutionDriver.cpp updated: 1.28 -> 1.29
---
Log message:
Ok, return an explicit path to the shared object, unbreaking code generator
debugging with the JIT
---
Diffs of the changes: (+1 -1)
Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.28 llvm/tools/bugpoint/ExecutionDriver.cpp:1.29
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.28 Sat Oct 18 16:02:51 2003
+++ llvm/tools/bugpoint/ExecutionDriver.cpp Sun Oct 19 16:54:13 2003
@@ -172,7 +172,7 @@
// Remove the intermediate C file
removeFile(OutputCFile);
- return SharedObjectFile;
+ return "./" + SharedObjectFile;
}
More information about the llvm-commits
mailing list