re PR libgcj/3144 (java.lang.Date.compareTo() not supported)
authorJakub Jelinek <jakub@redhat.com>
Tue, 10 Aug 2004 13:28:26 +0000 (15:28 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 10 Aug 2004 13:28:26 +0000 (15:28 +0200)
commit45d78e7f76382d08aeec6c4237e149d2d364ed1c
tree9647ac9edda8c048aa7fbe29d2b9727b756bb40d
parent25f3e06c7c272acfe17d2502a03330dcf5447b97
re PR libgcj/3144 (java.lang.Date.compareTo() not supported)

PR target/3144
* expr.c (move_by_pieces_ninsns): Add max_size argument.
(MOVE_BY_PIECES_P): Pass MOVE_MAX_PIECES + 1 to it.
(CLEAR_BY_PIECES_P): Pass STORE_MAX_PIECES + 1 to it.
(STORE_BY_PIECES_P): Define similarly to CLEAR_BY_PIECES_P,
but using MOVE_RATIO.
(move_by_pieces): Pass max_size to move_by_pieces_ninsns.
(can_store_by_pieces): Change max_size type to unsigned int.
(store_by_pieces_1): Likewise.  Pass max_size to
move_by_pieces_ninsns.
* config/s390/s390.h (STORE_BY_PIECES_P): Define.
* config/sh/sh.c (MOVE_BY_PIECES_P): Pass MOVE_MAX_PIECES + 1
to move_by_pieces_ninsns.
(STORE_BY_PIECES_P): Define.
* config/ns32k/ns32k.h (STORE_BY_PIECES_P): Pass STORE_MAX_PIECES + 1
to move_by_pieces_ninsns.
* doc/tm.texi (STORE_BY_PIECES_P): Document changed default.

* config/i386/i386.h (CLEAR_RATIO): Define.

From-SVN: r85750
gcc/ChangeLog
gcc/config/i386/i386.h
gcc/config/ns32k/ns32k.h
gcc/config/s390/s390.h
gcc/config/sh/sh.h
gcc/doc/tm.texi
gcc/expr.c