From 1680832a9b693e6f726570017237a984d4d390c8 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Wed, 11 May 2011 16:44:08 +0000 Subject: [PATCH] Typo and missing checkin from r131186. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131187 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Windows/Program.inc | 3 ++- tools/bugpoint/ToolRunner.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Support/Windows/Program.inc b/lib/Support/Windows/Program.inc index 350363cf710..b685bb8b851 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 9c3e6121f23..f9d8603b5a6 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