diff options
author | Alan Modra <modra@gmail.com> | 2003-05-09 11:36:09 +0000 |
---|---|---|
committer | Alan Modra <modra@gmail.com> | 2003-05-09 11:36:09 +0000 |
commit | 8bdd7abed58cfce74390555abba08ca16aa65400 (patch) | |
tree | 3cc0e8f84a44abc768fb3d2991410e99244d51c0 | |
parent | af9315f8a3b8f88aa06ce7ed8c0338c6c57c6a29 (diff) | |
download | cygnal-8bdd7abed58cfce74390555abba08ca16aa65400.tar.gz cygnal-8bdd7abed58cfce74390555abba08ca16aa65400.tar.bz2 cygnal-8bdd7abed58cfce74390555abba08ca16aa65400.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 e8a9dc30f..b88ca7880 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-05-07 Jason Merrill <jason@redhat.com> * hashtab.h (iterative_hash): Prototype. 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); |