Mon Jan 12 11:46:51 1998 Michael Snyder (msnyder@cleaver.cygnus.com)

* config/m68k/tm-m68k.h (REGISTER_VIRTUAL_TYPE): make A0 thru A7
        default to void pointer type (so that their default radix is hex).
This commit is contained in:
Michael Snyder 1998-01-12 23:41:59 +00:00
parent ef40809d23
commit 8f05bc9557
2 changed files with 15 additions and 9 deletions

View File

@ -1,7 +1,10 @@
Mon Jan 12 11:46:51 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
* config/m68k/tm-m68k.h (REGISTER_VIRTUAL_TYPE): make A0 thru A7
default to void pointer type (so that their default radix is hex).
* symtab.c: move rbreak_command from no_class to class_breakpoint
so it will be listed under "help breakpoints".
so it will be listed under "help breakpoints".
Sat Jan 10 14:58:04 1998 Stan Shebs <shebs@andros.cygnus.com>

View File

@ -176,15 +176,18 @@ extern void m68k_find_saved_regs PARAMS ((struct frame_info *, struct frame_save
floatformat_from_double (&floatformat_m68881_ext, &dbl_tmp_val, (TO)); \
}
/* Return the GDB type object for the "standard" data type
of data in register N. */
/* Note, for registers which contain addresses return
pointer to void, not pointer to char, because we don't
want to attempt to print the string after printing the address. */
/* Return the GDB type object for the "standard" data type of data
in register N. This should be int for D0-D7, double for FP0-FP7,
and void pointer for all others (A0-A7, PC, SR, FPCONTROL etc).
Note, for registers which contain addresses return pointer to void,
not pointer to char, because we don't want to attempt to print
the string after printing the address. */
#define REGISTER_VIRTUAL_TYPE(N) \
(((unsigned)(N) - FP0_REGNUM) < 8 ? builtin_type_double : \
(N) == PC_REGNUM || (N) == FP_REGNUM || (N) == SP_REGNUM ? \
lookup_pointer_type (builtin_type_void) : builtin_type_int)
((unsigned) (N) >= FPC_REGNUM ? lookup_pointer_type (builtin_type_void) : \
(unsigned) (N) >= FP0_REGNUM ? builtin_type_double : \
(unsigned) (N) >= A0_REGNUM ? lookup_pointer_type (builtin_type_void) : \
builtin_type_int)
/* Initializer for an array of names of registers.
Entries beyond the first NUM_REGS are ignored. */