aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-15 23:01:10 +0000
committerChris Lattner <sabre@nondot.org>2006-09-15 23:01:10 +0000
commitd42235051b4c43139c04ccd37a47df1471c01c4e (patch)
tree4198387c57c174509aa88ad4eb1cd57ab5e3ee0c /tools
parentc600f3c337f18c62116ac58b701e4f7ae6d2fb1a (diff)
downloadexternal_llvm-d42235051b4c43139c04ccd37a47df1471c01c4e.zip
external_llvm-d42235051b4c43139c04ccd37a47df1471c01c4e.tar.gz
external_llvm-d42235051b4c43139c04ccd37a47df1471c01c4e.tar.bz2
comment out debug code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/ToolRunner.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index bcade20..360b9c5 100644
--- a/tools/bugpoint/ToolRunner.cpp
+++ b/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);