From: J.T. Conklin Date: Thu, 1 Mar 2001 21:56:35 +0000 (+0000) Subject: * gdbtypes.h (builtin_type_f_integer): Removed duplicate declaration. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba41d5499ac148cc864f23b05ff52a9c9c67cab1;p=binutils-gdb.git * gdbtypes.h (builtin_type_f_integer): Removed duplicate declaration. (MAX_OF_TYPE): Wrap macro definition in parenthesis. (MIN_OF_TYPE): Likewise. * memattr.h (mem_access_mode): Removed extraneous trailing comma. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7714fd67d8a..216df55438a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2001-03-01 J.T. Conklin + + * gdbtypes.h (builtin_type_f_integer): Removed duplicate declaration. + (MAX_OF_TYPE): Wrap macro definition in parenthesis. + (MIN_OF_TYPE): Likewise. + + * memattr.h (mem_access_mode): Removed extraneous trailing comma. + 2001-03-01 Andrew Cagney * Makefile.in (os9kread.o): Do not compile with WERROR_CFLAGS. diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index b7a9a752974..15be2079795 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -905,11 +905,10 @@ extern struct type *builtin_type_chill_real; extern struct type *builtin_type_f_character; extern struct type *builtin_type_f_integer; +extern struct type *builtin_type_f_integer_s2; extern struct type *builtin_type_f_logical; extern struct type *builtin_type_f_logical_s1; extern struct type *builtin_type_f_logical_s2; -extern struct type *builtin_type_f_integer; -extern struct type *builtin_type_f_integer_s2; extern struct type *builtin_type_f_real; extern struct type *builtin_type_f_real_s8; extern struct type *builtin_type_f_real_s16; @@ -924,12 +923,12 @@ extern struct type *builtin_type_f_void; /* Maximum and minimum values of built-in types */ #define MAX_OF_TYPE(t) \ - TYPE_UNSIGNED(t) ? UMAX_OF_SIZE(TYPE_LENGTH(t)) \ - : MAX_OF_SIZE(TYPE_LENGTH(t)) + (TYPE_UNSIGNED(t) ? UMAX_OF_SIZE(TYPE_LENGTH(t)) \ + : MAX_OF_SIZE(TYPE_LENGTH(t))) #define MIN_OF_TYPE(t) \ - TYPE_UNSIGNED(t) ? UMIN_OF_SIZE(TYPE_LENGTH(t)) \ - : MIN_OF_SIZE(TYPE_LENGTH(t)) + (TYPE_UNSIGNED(t) ? UMIN_OF_SIZE(TYPE_LENGTH(t)) \ + : MIN_OF_SIZE(TYPE_LENGTH(t))) /* Allocate space for storing data associated with a particular type. We ensure that the space is allocated using the same mechanism that diff --git a/gdb/memattr.h b/gdb/memattr.h index 1af276b5169..75b5f781c1d 100644 --- a/gdb/memattr.h +++ b/gdb/memattr.h @@ -6,7 +6,7 @@ enum mem_access_mode { MEM_RW, /* read/write */ MEM_RO, /* read only */ - MEM_WO, /* write only */ + MEM_WO /* write only */ }; enum mem_access_width