mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
Rename 'flags' to 'signed_overflow_ok_p'
This commit is contained in:
parent
4d0ce66d1f
commit
7620791bd9
@ -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>
|
2000-02-24 Andrew Haley <aph@cygnus.com>
|
||||||
|
|
||||||
* cgen.h (CGEN_INSN_MACH_HAS_P): New macro.
|
* cgen.h (CGEN_INSN_MACH_HAS_P): New macro.
|
||||||
|
@ -1282,9 +1282,8 @@ typedef struct cgen_cpu_desc
|
|||||||
CGEN_INSN_LIST **dis_hash_table;
|
CGEN_INSN_LIST **dis_hash_table;
|
||||||
CGEN_INSN_LIST *dis_hash_table_entries;
|
CGEN_INSN_LIST *dis_hash_table_entries;
|
||||||
|
|
||||||
/* Customisation for CGEN operations. */
|
/* This field could be turned into a bitfield if room for other flags is needed. */
|
||||||
#define CGEN_FLAG_SIGNED_OVERFLOW_OK (1 << 0)
|
unsigned int signed_overflow_ok_p;
|
||||||
unsigned int flags;
|
|
||||||
|
|
||||||
} CGEN_CPU_TABLE;
|
} CGEN_CPU_TABLE;
|
||||||
|
|
||||||
@ -1388,12 +1387,6 @@ extern void cgen_put_insn_value
|
|||||||
extern const char * cgen_read_cpu_file
|
extern const char * cgen_read_cpu_file
|
||||||
PARAMS ((CGEN_CPU_DESC, const char * filename_));
|
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. */
|
/* Allow signed overflow of instruction fields. */
|
||||||
extern void cgen_set_signed_overflow_ok PARAMS ((CGEN_CPU_DESC));
|
extern void cgen_set_signed_overflow_ok PARAMS ((CGEN_CPU_DESC));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user