aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/expr.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 369a3f4..d56c80a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2003-06-29 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * expr.c (clear_by_pieces): Fix prototype.
+
2003-06-29 Andreas Jaeger <aj@suse.de>
* cse.c: Convert prototypes to ISO C90.
diff --git a/gcc/expr.c b/gcc/expr.c
index de1137f..a581b17 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -2788,7 +2788,7 @@ store_by_pieces (rtx to, unsigned HOST_WIDE_INT len,
before calling. ALIGN is maximum alignment we can assume. */
static void
-clear_by_pieces (rtx to, long unsigned int len, unsigned int align)
+clear_by_pieces (rtx to, unsigned HOST_WIDE_INT len, unsigned int align)
{
struct store_by_pieces data;