diff options
author | Owen Anderson <resistor@mac.com> | 2007-05-29 22:43:03 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-05-29 22:43:03 +0000 |
commit | 9b6bd12ef0d92531838a84e176db20c20da7d0a4 (patch) | |
tree | 27e63a45598ba4fb62623681bac977da66a0ae16 | |
parent | b502bdb6041e0de2e7bccc30ca1c21297d11c001 (diff) |
Comment debug code out that I accidentally uncommented last time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37346 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/GVNPRE.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/GVNPRE.cpp b/lib/Transforms/Scalar/GVNPRE.cpp index 38fae0c3db..6e1cf8ec72 100644 --- a/lib/Transforms/Scalar/GVNPRE.cpp +++ b/lib/Transforms/Scalar/GVNPRE.cpp @@ -439,7 +439,7 @@ bool GVNPRE::runOnFunction(Function &F) { iterations++; } - printf("Iterations: %d\n", iterations); + /*printf("Iterations: %d\n", iterations); for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) { printf("Name: "); @@ -453,7 +453,7 @@ bool GVNPRE::runOnFunction(Function &F) { printf("\nANTIC_IN: \n"); dump(VN, anticipatedIn[I]); printf("\n"); - } + }*/ return false; } |