diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-06-06 23:10:56 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-06-06 23:10:56 +0000 |
commit | f04823af30ecc5607e63540c9a6fd8979b1080ee (patch) | |
tree | 15f377bdb30b4820863cfef6a6d1f24b2e5f5945 /llvm/tools/bugpoint/ExecutionDriver.cpp | |
parent | 85703e3796dcf3530b00dcfda842322f050f4a08 (diff) | |
download | bcm5719-llvm-f04823af30ecc5607e63540c9a6fd8979b1080ee.tar.gz bcm5719-llvm-f04823af30ecc5607e63540c9a6fd8979b1080ee.zip |
Fix bugpoint to run -llc-safe with -Xlinker.
llvm-svn: 37483
Diffstat (limited to 'llvm/tools/bugpoint/ExecutionDriver.cpp')
-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 f4a072b14ae..9a670c950c0 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/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); |