]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* expr.c (clear_by_pieces): Fix prototype.
authorUlrich Weigand <uweigand@de.ibm.com>
Sun, 29 Jun 2003 17:47:37 +0000 (17:47 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Sun, 29 Jun 2003 17:47:37 +0000 (17:47 +0000)
From-SVN: r68676

gcc/ChangeLog
gcc/expr.c

index 369a3f4f61b7ca7c9516b91003bf79262f07ae14..d56c80a78c237ae99fdee54e9002504f27ba9ace 100644 (file)
@@ -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.
index de1137f523fd0fb01ee416cd75c23b75acb8530f..a581b1788029c7cea2c9ad46f6a365f9a6e4d8a5 100644 (file)
@@ -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;