From: Ulrich Weigand Date: Sun, 29 Jun 2003 17:47:37 +0000 (+0000) Subject: * expr.c (clear_by_pieces): Fix prototype. X-Git-Tag: releases/gcc-3.4.0~5342 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=342e2b749d651b51cee1f484966e260c33915575;p=thirdparty%2Fgcc.git * expr.c (clear_by_pieces): Fix prototype. From-SVN: r68676 --- 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;