diff options
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/bugpoint/ToolRunner.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/llvm/tools/bugpoint/ToolRunner.cpp b/llvm/tools/bugpoint/ToolRunner.cpp index bcade20e516..360b9c53708 100644 --- a/llvm/tools/bugpoint/ToolRunner.cpp +++ b/llvm/tools/bugpoint/ToolRunner.cpp @@ -38,12 +38,12 @@ static int RunProgramWithTimeout(const sys::Path &ProgramPath,    redirects[1] = &StdOutFile;    redirects[2] = &StdErrFile; -{ -  std::cerr << "RUN:"; -  for (unsigned i = 0; Args[i]; ++i) -    std::cerr << " " << Args[i]; -  std::cerr << "\n"; -} +  if (0) { +    std::cerr << "RUN:"; +    for (unsigned i = 0; Args[i]; ++i) +      std::cerr << " " << Args[i]; +    std::cerr << "\n"; +  }    return      sys::Program::ExecuteAndWait(ProgramPath, Args, 0, redirects, NumSeconds); | 

