* a68v-xdep.c (store_inferior_registers): Define as type void.
* configure.in: Add host m68k-apollo*-bsd*. * demangle.c (struct demanglers): Use enum instead of constant value to keep braindamaged HP/Apollo compiler happy.
This commit is contained in:
parent
2c0e53a423
commit
6c7e40b4ab
5 changed files with 15 additions and 1 deletions
|
@ -162,12 +162,14 @@ remote-es1800.c
|
||||||
remote-hms.c
|
remote-hms.c
|
||||||
remote-mm.c
|
remote-mm.c
|
||||||
remote-nindy.c
|
remote-nindy.c
|
||||||
|
remote-st2000.c
|
||||||
remote-vx.c
|
remote-vx.c
|
||||||
remote.c
|
remote.c
|
||||||
rs6000-pinsn.c
|
rs6000-pinsn.c
|
||||||
rs6000-tdep.c
|
rs6000-tdep.c
|
||||||
rs6000-xdep.c
|
rs6000-xdep.c
|
||||||
saber.suppress
|
saber.suppress
|
||||||
|
ser-bsd.c
|
||||||
ser-go32.c
|
ser-go32.c
|
||||||
ser-termios.c
|
ser-termios.c
|
||||||
serial.h
|
serial.h
|
||||||
|
@ -234,6 +236,7 @@ tm-rs6000.h
|
||||||
tm-sparc.h
|
tm-sparc.h
|
||||||
tm-spc-noun.h
|
tm-spc-noun.h
|
||||||
tm-spc-un.h
|
tm-spc-un.h
|
||||||
|
tm-st2000.h
|
||||||
tm-stratus.h
|
tm-stratus.h
|
||||||
tm-sun2.h
|
tm-sun2.h
|
||||||
tm-sun2os4.h
|
tm-sun2os4.h
|
||||||
|
@ -268,6 +271,7 @@ xcoffsolib.h
|
||||||
xm-3b1.h
|
xm-3b1.h
|
||||||
xm-altos.h
|
xm-altos.h
|
||||||
xm-amix.h
|
xm-amix.h
|
||||||
|
xm-apollo68b.h
|
||||||
xm-apollo68v.h
|
xm-apollo68v.h
|
||||||
xm-arm.h
|
xm-arm.h
|
||||||
xm-bigmips.h
|
xm-bigmips.h
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
Thu Sep 3 09:17:05 1992 Stu Grossman (grossman at cygnus.com)
|
||||||
|
|
||||||
|
* a68v-xdep.c (store_inferior_registers): Define as type void.
|
||||||
|
* configure.in: Add host m68k-apollo*-bsd*.
|
||||||
|
* demangle.c (struct demanglers): Use enum instead of constant
|
||||||
|
value to keep braindamaged HP/Apollo compiler happy.
|
||||||
|
|
||||||
Wed Sep 2 20:45:31 1992 Per Bothner (bothner@rtl.cygnus.com)
|
Wed Sep 2 20:45:31 1992 Per Bothner (bothner@rtl.cygnus.com)
|
||||||
|
|
||||||
* utils.c (strcmp_iw): Add a hack to allow "FOO(ARGS)" to
|
* utils.c (strcmp_iw): Add a hack to allow "FOO(ARGS)" to
|
||||||
|
|
|
@ -61,6 +61,7 @@ fetch_inferior_registers ()
|
||||||
If REGNO is -1, do this for all registers.
|
If REGNO is -1, do this for all registers.
|
||||||
Otherwise, REGNO specifies which register (so we can save time). */
|
Otherwise, REGNO specifies which register (so we can save time). */
|
||||||
|
|
||||||
|
void
|
||||||
store_inferior_registers (regno)
|
store_inferior_registers (regno)
|
||||||
int regno;
|
int regno;
|
||||||
{
|
{
|
||||||
|
|
|
@ -41,6 +41,8 @@ m68k-altos-*) gdb_host=altos ;;
|
||||||
|
|
||||||
m68k-apollo*-sysv*) gdb_host=apollo68v ;;
|
m68k-apollo*-sysv*) gdb_host=apollo68v ;;
|
||||||
|
|
||||||
|
m68k-apollo*-bsd*) gdb_host=apollo68b ;;
|
||||||
|
|
||||||
m68k-att-*) gdb_host=3b1 ;;
|
m68k-att-*) gdb_host=3b1 ;;
|
||||||
|
|
||||||
m68k-cbm-sysv4*) gdb_host=amix ;;
|
m68k-cbm-sysv4*) gdb_host=amix ;;
|
||||||
|
|
|
@ -67,7 +67,7 @@ static const struct demangler
|
||||||
{CFRONT_DEMANGLING_STYLE_STRING,
|
{CFRONT_DEMANGLING_STYLE_STRING,
|
||||||
cfront_demangling,
|
cfront_demangling,
|
||||||
"ARM (cfront) style demangling"},
|
"ARM (cfront) style demangling"},
|
||||||
{NULL, 0, NULL}
|
{NULL, unknown_demangling, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* show current demangling style. */
|
/* show current demangling style. */
|
||||||
|
|
Loading…
Reference in a new issue