summaryrefslogtreecommitdiff
path: root/tools/lto
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-21 02:04:43 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-21 02:04:43 +0000
commit023fcf977660e686e04f5bef0e2a7321db47df7e (patch)
tree21e3b0af2281c2ede5c731f98d5c6cb22dd135a6 /tools/lto
parent422fa625d9bdc37ebba9fc8ce16f141ffa80fc58 (diff)
downloadllvm-023fcf977660e686e04f5bef0e2a7321db47df7e.tar.gz
llvm-023fcf977660e686e04f5bef0e2a7321db47df7e.tar.bz2
llvm-023fcf977660e686e04f5bef0e2a7321db47df7e.tar.xz
For PR797:
Make sys::Program::ExecuteAndWait not throw exceptions and update any affected code. It now return -9999 to signal that the program couldn't be executed. Only one case (in bugpoint) actually examines the result code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lto')
-rw-r--r--tools/lto/lto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lto/lto.cpp b/tools/lto/lto.cpp
index 162bac9e61..570558a62b 100644
--- a/tools/lto/lto.cpp
+++ b/tools/lto/lto.cpp
@@ -334,7 +334,7 @@ LinkTimeOptimizer::optimizeModules(const std::string &OutputFilename,
args.push_back(tmpAsmFilePath.c_str());
args.push_back(0);
- int R1 = sys::Program::ExecuteAndWait(gcc, &args[0], 0, 0, 1);
+ sys::Program::ExecuteAndWait(gcc, &args[0], 0, 0, 1);
tmpAsmFilePath.eraseFromDisk();