diff options
author | Alan Modra <modra@gmail.com> | 2003-05-09 11:38:58 +0000 |
---|---|---|
committer | Alan Modra <modra@gmail.com> | 2003-05-09 11:38:58 +0000 |
commit | fbc49325943a5d3cfa00deeb39e196a0b3bccf74 (patch) | |
tree | e5650c6ae65b3ed6a9e31b77d16aa4a22d878c1d | |
parent | 44272ea028d3bd9f9ae2948775855597683c4ea9 (diff) | |
download | cygnal-fbc49325943a5d3cfa00deeb39e196a0b3bccf74.tar.gz cygnal-fbc49325943a5d3cfa00deeb39e196a0b3bccf74.tar.bz2 cygnal-fbc49325943a5d3cfa00deeb39e196a0b3bccf74.zip |
* xtensa-isa-internal.h (xtensa_isa_module_struct): Remove const on
gen_num_opcodes_fn return type.
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/xtensa-isa-internal.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 6d18714ee..248b096a5 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2003-05-09 Alan Modra <amodra@bigpond.net.au> + + * xtensa-isa-internal.h (xtensa_isa_module_struct): Remove const on + gen_num_opcodes_fn return type. + 2003-04-28 H.J. Lu <hjl@gnu.org> * bfdlink.h (bfd_link_info): Add relax_finalizing. diff --git a/include/xtensa-isa-internal.h b/include/xtensa-isa-internal.h index d2244c510..7f221eae4 100644 --- a/include/xtensa-isa-internal.h +++ b/include/xtensa-isa-internal.h @@ -104,7 +104,7 @@ typedef struct xtensa_isa_internal_struct typedef struct xtensa_isa_module_struct { - const int (*get_num_opcodes_fn) (void); + int (*get_num_opcodes_fn) (void); xtensa_opcode_internal **(*get_opcodes_fn) (void); int (*decode_insn_fn) (const xtensa_insnbuf); struct config_struct *(*get_config_table_fn) (void); |