summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Support/Windows/Program.inc3
-rw-r--r--tools/bugpoint/ToolRunner.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/Support/Windows/Program.inc b/lib/Support/Windows/Program.inc
index 350363cf71..b685bb8b85 100644
--- a/lib/Support/Windows/Program.inc
+++ b/lib/Support/Windows/Program.inc
@@ -332,7 +332,8 @@ Program::Execute(const Path& path,
int
Program::Wait(const Path &path,
unsigned secondsToWait,
- std::string* ErrMsg) {
+ std::string* ErrMsg,
+ const char* /*SignalPrefix*/) {
if (Data_ == 0) {
MakeErrMsg(ErrMsg, "Process not started!");
return -1;
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index 9c3e6121f2..f9d8603b5a 100644
--- a/tools/bugpoint/ToolRunner.cpp
+++ b/tools/bugpoint/ToolRunner.cpp
@@ -52,7 +52,7 @@ namespace {
// Add a prefix to ErrMsg if the program is terminated by a signal to
// distinguish compiled program crashes from other execution
-// failures. Miscompilation likely to results in SIGSEGV.
+// failures. Miscompilation likely results in SIGSEGV.
static const char *SignalPrefix = "Signal - ";
/// RunProgramWithTimeout - This function provides an alternate interface