diff options
author | Nick Clifton <nickc@redhat.com> | 2000-02-24 23:57:23 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-02-24 23:57:23 +0000 |
commit | cb2ab3671fd684c08ed941b19e5492ba0cbfaab7 (patch) | |
tree | 924f9c0784e5df2e26c04af3401813f87f7559ba /include | |
parent | 07871ea926400766d6098b2221f444e540224261 (diff) | |
download | gdb-cb2ab3671fd684c08ed941b19e5492ba0cbfaab7.tar.gz |
Rename 'flags' to 'signed_overflow_ok_p'
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 6 | ||||
-rw-r--r-- | include/opcode/cgen.h | 11 |
2 files changed, 8 insertions, 9 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index b549903c8a0..41b7dbbe1fd 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,9 @@ +2000-02-24 Nick Clifton <nickc@cygnus.com> + + * cgen.h (cgen_cpu_desc): Rename field 'flags' to + 'signed_overflow_ok_p'. + Delete prototypes for cgen_set_flags() and cgen_get_flags(). + 2000-02-24 Andrew Haley <aph@cygnus.com> * cgen.h (CGEN_INSN_MACH_HAS_P): New macro. diff --git a/include/opcode/cgen.h b/include/opcode/cgen.h index d46d268973d..0cff7c82682 100644 --- a/include/opcode/cgen.h +++ b/include/opcode/cgen.h @@ -1282,9 +1282,8 @@ typedef struct cgen_cpu_desc CGEN_INSN_LIST **dis_hash_table; CGEN_INSN_LIST *dis_hash_table_entries; - /* Customisation for CGEN operations. */ -#define CGEN_FLAG_SIGNED_OVERFLOW_OK (1 << 0) - unsigned int flags; + /* This field could be turned into a bitfield if room for other flags is needed. */ + unsigned int signed_overflow_ok_p; } CGEN_CPU_TABLE; @@ -1388,12 +1387,6 @@ extern void cgen_put_insn_value extern const char * cgen_read_cpu_file PARAMS ((CGEN_CPU_DESC, const char * filename_)); -/* Set the flags in the CGEN_CPU_DESC. */ -extern void cgen_set_flags PARAMS ((CGEN_CPU_DESC, unsigned int)); - -/* Read the flags in the CGEN_CPU_DESC. */ -extern unsigned int cgen_get_flags PARAMS ((CGEN_CPU_DESC)); - /* Allow signed overflow of instruction fields. */ extern void cgen_set_signed_overflow_ok PARAMS ((CGEN_CPU_DESC)); |