From 342e2b749d651b51cee1f484966e260c33915575 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Sun, 29 Jun 2003 17:47:37 +0000 Subject: [PATCH] * expr.c (clear_by_pieces): Fix prototype. From-SVN: r68676 --- gcc/ChangeLog | 4 ++++ gcc/expr.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 369a3f4f61b7..d56c80a78c23 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-06-29 Ulrich Weigand + + * expr.c (clear_by_pieces): Fix prototype. + 2003-06-29 Andreas Jaeger * cse.c: Convert prototypes to ISO C90. diff --git a/gcc/expr.c b/gcc/expr.c index de1137f523fd..a581b1788029 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; -- 2.47.2