mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-18 21:34:13 +08:00
* stabsread.c (read_type): Treat a negative type number at the start
of a type as a type reference, not as a definition of a type with "50=" omitted. This makes things work on the RS/6000 again (the 14 Sep 1993 change broke it).
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
Tue Oct 12 08:59:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Tue Oct 12 08:59:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* stabsread.c (read_type): Treat a negative type number at the start
|
||||||
|
of a type as a type reference, not as a definition of a type with
|
||||||
|
"50=" omitted. This makes things work on the RS/6000 again (the
|
||||||
|
14 Sep 1993 change broke it).
|
||||||
|
|
||||||
* inflow.c: Use 0 (standard input) not scb->fd.
|
* inflow.c: Use 0 (standard input) not scb->fd.
|
||||||
(terminal_ours_1): If printing warning, don't claim it happened in
|
(terminal_ours_1): If printing warning, don't claim it happened in
|
||||||
terminal_inferior.
|
terminal_inferior.
|
||||||
|
@ -1219,7 +1219,8 @@ read_type (pp, objfile)
|
|||||||
for instance in a two-dimensional array declared with type
|
for instance in a two-dimensional array declared with type
|
||||||
"ar1;1;10;ar1;1;10;4". */
|
"ar1;1;10;ar1;1;10;4". */
|
||||||
if ((**pp >= '0' && **pp <= '9')
|
if ((**pp >= '0' && **pp <= '9')
|
||||||
|| **pp == '(')
|
|| **pp == '('
|
||||||
|
|| **pp == '-')
|
||||||
{
|
{
|
||||||
if (read_type_number (pp, typenums) != 0)
|
if (read_type_number (pp, typenums) != 0)
|
||||||
return error_type (pp);
|
return error_type (pp);
|
||||||
|
Reference in New Issue
Block a user