diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-24 23:15:19 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-24 23:15:19 +0000 |
commit | e4e498cfb231e53253d8d0e50ae9356af5e74bb0 (patch) | |
tree | 488e0bd31e47424105f777ed841d306134aabbfd /gcc/config/m32r | |
parent | 6896278d2d89bee2261a684019b3d310b77c1aa0 (diff) | |
download | gcc-e4e498cfb231e53253d8d0e50ae9356af5e74bb0.tar.gz |
* cse.c (fold_rtx): Make autoincrement addressing mode tests be
runtime selectable.
* expr.c (move_by_pieces): Similarly.
(move_by_pieces_1, clear_by_pieces, clear_by_pieces_1): Similarly.
* flow.c (find_auto_inc): Similarly.
(try_pre_increment): Similarly.
* loop.c (strength_reduce): Similarly.
* regclass.c (auto_inc_dec_reg_p): Similarly.
* regmove.c (try_auto_increment): Similarly.
(fixup_match_1): Similarly.
* rtl.h (HAVE_PRE_INCREMENT): Define if not already defined.
(HAVE_PRE_DECREMENT): Similarly.
(HAVE_POST_INCREMENT, HAVE_POST_DECREMENT): Similarly.
sponding changes to all target header files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23837 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m32r')
-rw-r--r-- | gcc/config/m32r/m32r.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index d825f989346..425b83cb20b 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -1126,9 +1126,9 @@ do { \ /* We have post-inc load and pre-dec,pre-inc store, but only for 4 byte vals. */ #if 0 -#define HAVE_PRE_DECREMENT -#define HAVE_PRE_INCREMENT -#define HAVE_POST_INCREMENT +#define HAVE_PRE_DECREMENT 1 +#define HAVE_PRE_INCREMENT 1 +#define HAVE_POST_INCREMENT 1 #endif /* Recognize any constant value that is a valid address. */ |