diff options
author | Jan Hubicka <jh@suse.cz> | 2001-07-20 22:07:58 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-07-20 20:07:58 +0000 |
commit | 371b8fc0bc89750fd5aac47eda61cc7db7cf7f53 (patch) | |
tree | 6b4648cbef7b5a4a201860a0d8db5f383b7ca3ce /gcc/optabs.c | |
parent | 00d0458c03fc77ca4d52412d47b23a09106e3696 (diff) | |
download | gcc-371b8fc0bc89750fd5aac47eda61cc7db7cf7f53.zip gcc-371b8fc0bc89750fd5aac47eda61cc7db7cf7f53.tar.gz gcc-371b8fc0bc89750fd5aac47eda61cc7db7cf7f53.tar.bz2 |
rtlanal.c (set_noop_p): Return true for noop jumps.
* rtlanal.c (set_noop_p): Return true for noop jumps.
* expr.c (emit_single_push_insn): Add call to push expander.
* expr.h (optab_index): Add OTI_push
(push_optab): New constant.
* genopinit.c (optabs): Add push_optab.
* optabs.c (init_optab): Init push optab.
* md.texi (push??1): Document
From-SVN: r44210
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index f135ad1..84cf56d 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -4682,6 +4682,7 @@ init_optabs () cbranch_optab = init_optab (UNKNOWN); cmov_optab = init_optab (UNKNOWN); cstore_optab = init_optab (UNKNOWN); + push_optab = init_optab (UNKNOWN); for (i = 0; i < NUM_MACHINE_MODES; i++) { |