* xtensa-isa-internal.h (xtensa_isa_module_struct): Remove const on
gen_num_opcodes_fn return type.
This commit is contained in:
parent
af9315f8a3
commit
8bdd7abed5
|
@ -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>
|
2003-05-07 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
* hashtab.h (iterative_hash): Prototype.
|
* hashtab.h (iterative_hash): Prototype.
|
||||||
|
|
|
@ -104,7 +104,7 @@ typedef struct xtensa_isa_internal_struct
|
||||||
|
|
||||||
typedef struct xtensa_isa_module_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);
|
xtensa_opcode_internal **(*get_opcodes_fn) (void);
|
||||||
int (*decode_insn_fn) (const xtensa_insnbuf);
|
int (*decode_insn_fn) (const xtensa_insnbuf);
|
||||||
struct config_struct *(*get_config_table_fn) (void);
|
struct config_struct *(*get_config_table_fn) (void);
|
||||||
|
|
Loading…
Reference in New Issue