diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2003-06-29 17:47:37 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2003-06-29 17:47:37 +0000 |
commit | 342e2b749d651b51cee1f484966e260c33915575 (patch) | |
tree | 1e2a982ce47c773faa20f0cffd0e1913e509dc11 /gcc/expr.c | |
parent | e601f149a95f4f104f6c2b0c2ab9f7ecb1f5c568 (diff) | |
download | gcc-342e2b749d651b51cee1f484966e260c33915575.zip gcc-342e2b749d651b51cee1f484966e260c33915575.tar.gz gcc-342e2b749d651b51cee1f484966e260c33915575.tar.bz2 |
* expr.c (clear_by_pieces): Fix prototype.
From-SVN: r68676
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |