mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
Surround extended support with #ifdef HAVE_68881.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
Sat Aug 15 02:58:03 1992 John Gilmore (gnu@cygnus.com)
|
Sat Aug 15 02:58:03 1992 John Gilmore (gnu@cygnus.com)
|
||||||
|
|
||||||
|
* m68k-pinsn.c: Surround extended support with #ifdef HAVE_68881.
|
||||||
|
|
||||||
* infcmd.c (registers_info): Handle multiple register names.
|
* infcmd.c (registers_info): Handle multiple register names.
|
||||||
Changes inspired by Roland McGrath.
|
Changes inspired by Roland McGrath.
|
||||||
|
|
||||||
|
@ -466,10 +466,12 @@ print_insn_arg (d, buffer, p, addr, stream)
|
|||||||
flval = NEXTDOUBLE(p);
|
flval = NEXTDOUBLE(p);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef HAVE_68881
|
||||||
case 'x':
|
case 'x':
|
||||||
ieee_extended_to_double (&ext_format_68881, p, &flval);
|
ieee_extended_to_double (&ext_format_68881, p, &flval);
|
||||||
p += 12;
|
p += 12;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
case 'p':
|
case 'p':
|
||||||
p += 12;
|
p += 12;
|
||||||
|
Reference in New Issue
Block a user