summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ExecutionDriver.cpp
diff options
context:
space:
mode:
authorLauro Ramos Venancio <lauro.venancio@gmail.com>2007-06-06 23:10:56 +0000
committerLauro Ramos Venancio <lauro.venancio@gmail.com>2007-06-06 23:10:56 +0000
commit497391ad8d35fd8dcf6b48f459c179e3db3d3c5c (patch)
tree184d21764bce3808c9643bd54c0ce9d134bfa890 /tools/bugpoint/ExecutionDriver.cpp
parent9613e871d26f123789d98c61879b4dbe944a6d31 (diff)
downloadllvm-497391ad8d35fd8dcf6b48f459c179e3db3d3c5c.tar.gz
llvm-497391ad8d35fd8dcf6b48f459c179e3db3d3c5c.tar.bz2
llvm-497391ad8d35fd8dcf6b48f459c179e3db3d3c5c.tar.xz
Fix bugpoint to run -llc-safe with -Xlinker.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37483 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index f4a072b14a..9a670c950c 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -260,7 +260,7 @@ std::string BugDriver::executeProgram(std::string OutputFile,
// as the GCCArgs.
int RetVal = 0;
if (InterpreterSel == RunLLC || InterpreterSel == RunCBE ||
- InterpreterSel == CBE_bug)
+ InterpreterSel == CBE_bug || InterpreterSel == LLC_Safe)
RetVal = AI->ExecuteProgram(BytecodeFile, InputArgv, InputFile,
OutputFile, AdditionalLinkerArgs, SharedObjs,
Timeout, MemoryLimit);