[llvm-commits] CVS: llvm/lib/Transforms/Scalar/GVNPRE.cpp
Owen Anderson
resistor at mac.com
Tue May 29 15:43:32 PDT 2007
Changes in directory llvm/lib/Transforms/Scalar:
GVNPRE.cpp updated: 1.2 -> 1.3
---
Log message:
Comment debug code out that I accidentally uncommented last time.
---
Diffs of the changes: (+2 -2)
GVNPRE.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/Transforms/Scalar/GVNPRE.cpp
diff -u llvm/lib/Transforms/Scalar/GVNPRE.cpp:1.2 llvm/lib/Transforms/Scalar/GVNPRE.cpp:1.3
--- llvm/lib/Transforms/Scalar/GVNPRE.cpp:1.2 Tue May 29 17:35:41 2007
+++ llvm/lib/Transforms/Scalar/GVNPRE.cpp Tue May 29 17:43:03 2007
@@ -439,7 +439,7 @@
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 @@
printf("\nANTIC_IN: \n");
dump(VN, anticipatedIn[I]);
printf("\n");
- }
+ }*/
return false;
}
More information about the llvm-commits
mailing list