diff options
author | Fred Fish <fnf@specifix.com> | 2001-12-12 02:11:52 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2001-12-12 02:11:52 +0000 |
commit | 74a9bb82c55f8d399894d5b3525572c17c3a0312 (patch) | |
tree | 21cf7847428158465650b87b4a98c4510ef0513d /gdb/d10v-tdep.c | |
parent | e9e79dd9fc61097942b74f385503cda31ca39127 (diff) | |
download | gdb-74a9bb82c55f8d399894d5b3525572c17c3a0312.zip gdb-74a9bb82c55f8d399894d5b3525572c17c3a0312.tar.gz gdb-74a9bb82c55f8d399894d5b3525572c17c3a0312.tar.bz2 |
Approved by Jim Blandy:
2001-12-11 Fred Fish <fnf@redhat.com>
* c-typeprint.c (c_type_print_base): Use type flags access macros
to test bits.
* ch-typeprint.c (chill_type_print_base): Ditto.
* ch-valprint.c (chill_val_print): Ditto.
* d10v-tdep.c (d10v_pointer_to_address): Ditto.
* dwarf2read.c (dwarf2_add_member_fn): Ditto.
* dwarfread.c (read_structure_scope): Ditto.
* gdbtypes.c (create_range_type): Dittol
(create_set_type): Ditto.
(check_typedef): Ditto.
* jv-typeprint.c (java_type_print_base): Ditto.
* p-typeprint.c (pascal_type_print_base): Ditto
* p-valprint.c (pascal_val_print): Ditto.
* stabsread.c (read_cfront_member_functions): Ditto.
(read_member_functions): Ditto.
(cleanup_undefined_types): Ditto.
* valprint.c (val_print): Ditto.
* valops.c (hand_function_call): Remove is_prototyped
variable and just use type flag test macro directly.
Diffstat (limited to 'gdb/d10v-tdep.c')
-rw-r--r-- | gdb/d10v-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/d10v-tdep.c b/gdb/d10v-tdep.c index 3002444..fa55d46 100644 --- a/gdb/d10v-tdep.c +++ b/gdb/d10v-tdep.c @@ -430,8 +430,8 @@ d10v_pointer_to_address (struct type *type, void *buf) /* Is it a code address? */ if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_FUNC - || TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_METHOD || - (TYPE_FLAGS (TYPE_TARGET_TYPE (type)) & TYPE_FLAG_CODE_SPACE) != 0) + || TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_METHOD + || TYPE_CODE_SPACE (TYPE_TARGET_TYPE (type))) return d10v_make_iaddr (addr); else return d10v_make_daddr (addr); |