Typo and missing checkin from r131186.
authorAndrew Trick <atrick@apple.com>
Wed, 11 May 2011 16:44:08 +0000 (16:44 +0000)
committerAndrew Trick <atrick@apple.com>
Wed, 11 May 2011 16:44:08 +0000 (16:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131187 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Windows/Program.inc
tools/bugpoint/ToolRunner.cpp

index 350363cf7107d4ea2340385774a295c3438e34b2..b685bb8b851cefea1651bb28c8d2d31648007a2b 100644 (file)
@@ -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;
index 9c3e6121f233943d93cfab4f6a7f096425e51bbd..f9d8603b5a6cd471bdea5b4621478de6b4a39f2e 100644 (file)
@@ -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