[llvm-commits] [llvm] r131187 - in /llvm/trunk: lib/Support/Windows/Program.inc tools/bugpoint/ToolRunner.cpp
Andrew Trick
atrick at apple.com
Wed May 11 09:44:08 PDT 2011
Author: atrick
Date: Wed May 11 11:44:08 2011
New Revision: 131187
URL: http://llvm.org/viewvc/llvm-project?rev=131187&view=rev
Log:
Typo and missing checkin from r131186.
Modified:
llvm/trunk/lib/Support/Windows/Program.inc
llvm/trunk/tools/bugpoint/ToolRunner.cpp
Modified: llvm/trunk/lib/Support/Windows/Program.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Program.inc?rev=131187&r1=131186&r2=131187&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Program.inc (original)
+++ llvm/trunk/lib/Support/Windows/Program.inc Wed May 11 11:44:08 2011
@@ -332,7 +332,8 @@
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;
Modified: llvm/trunk/tools/bugpoint/ToolRunner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/ToolRunner.cpp?rev=131187&r1=131186&r2=131187&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/ToolRunner.cpp (original)
+++ llvm/trunk/tools/bugpoint/ToolRunner.cpp Wed May 11 11:44:08 2011
@@ -52,7 +52,7 @@
// 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
More information about the llvm-commits
mailing list