diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-10-19 21:54:13 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-10-19 21:54:13 +0000 |
| commit | 2b97d6e7cd864a14cb4234e818adbb5a8872468e (patch) | |
| tree | ef3cfcdaf0d8a98be939fe3a9050871bc06b6cca | |
| parent | a4004f6678d729dae1f05236054ef7dc56bf94a4 (diff) | |
| download | bcm5719-llvm-2b97d6e7cd864a14cb4234e818adbb5a8872468e.tar.gz bcm5719-llvm-2b97d6e7cd864a14cb4234e818adbb5a8872468e.zip | |
Ok, return an explicit path to the shared object, unbreaking code generator
debugging with the JIT
llvm-svn: 9273
| -rw-r--r-- | llvm/tools/bugpoint/ExecutionDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp index 28ab9ff18da..635a691822d 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/tools/bugpoint/ExecutionDriver.cpp @@ -172,7 +172,7 @@ std::string BugDriver::compileSharedObject(const std::string &BytecodeFile) { // Remove the intermediate C file removeFile(OutputCFile); - return SharedObjectFile; + return "./" + SharedObjectFile; } |

