aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBernd Schmidt <bernd.schmidt@analog.com>2006-09-15 23:32:58 +0000
committerBernd Schmidt <bernds@gcc.gnu.org>2006-09-15 23:32:58 +0000
commit405f05879ebdef9e03fab9b07bcef5d827ae0062 (patch)
tree87eb4de196b1cfdae4cb625b945ea41ee2157380 /gcc
parentd0970db2ad7492604505bcc62e038fc79f9944cb (diff)
downloadgcc-405f05879ebdef9e03fab9b07bcef5d827ae0062.zip
gcc-405f05879ebdef9e03fab9b07bcef5d827ae0062.tar.gz
gcc-405f05879ebdef9e03fab9b07bcef5d827ae0062.tar.bz2
loop-doloop.c (doloop_optimize): Remove bogus arg from debugging printf.
* loop-doloop.c (doloop_optimize): Remove bogus arg from debugging printf. From-SVN: r116984
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/loop-doloop.c3
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 148db87..762df39 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-16 Bernd Schmidt <bernd.schmidt@analog.com>
+
+ * loop-doloop.c (doloop_optimize): Remove bogus arg from debugging
+ printf.
+
2006-09-15 Jim Wilson <wilson@specifix.com>
* config/ia64/ia64.c (ia64_legitimate_constant_p, cast CONST):
@@ -23,7 +28,7 @@
example of how to use the absence_set directive and reword the
description to make it slightly easier to read.
-2005-09-15 Bernd Schmidt <bernd.schmidt@analog.com>
+2006-09-15 Bernd Schmidt <bernd.schmidt@analog.com>
* params.def (PARAM_MAX_ITERATIONS_COMPUTATION_COST): New.
* loop-doloop.c (doloop_optimize): Use it to limit costs of
diff --git a/gcc/loop-doloop.c b/gcc/loop-doloop.c
index a1ec4b0..7b9d168 100644
--- a/gcc/loop-doloop.c
+++ b/gcc/loop-doloop.c
@@ -532,8 +532,7 @@ doloop_optimize (struct loop *loop)
{
if (dump_file)
fprintf (dump_file,
- "Doloop: number of iterations (%u) too costly to compute.\n",
- est_niter);
+ "Doloop: number of iterations too costly to compute.\n");
return false;
}