* c-exp.y (yyerror): Pass error message if given.
* configure.in: Add rs6000 host and target. * inflow.c (new_tty): O_NOCTTY kludge for RS/6000. * symfile.h (entry_point): Add.
This commit is contained in:
parent
a23075bc5a
commit
b90c4f33cd
2 changed files with 9 additions and 1 deletions
|
@ -1398,7 +1398,7 @@ void
|
|||
yyerror (msg)
|
||||
char *msg;
|
||||
{
|
||||
error ("Invalid syntax in expression.");
|
||||
error (msg ? msg : "Invalid syntax in expression.");
|
||||
}
|
||||
|
||||
/* Table mapping opcodes into strings for printing operators
|
||||
|
|
|
@ -104,6 +104,10 @@ romp)
|
|||
gdb_host=rtbsd
|
||||
;;
|
||||
|
||||
rs6000)
|
||||
gdb_host=rs6000
|
||||
;;
|
||||
|
||||
a29k)
|
||||
gdb_host=ultra3
|
||||
;;
|
||||
|
@ -242,6 +246,10 @@ ns32k)
|
|||
esac
|
||||
;;
|
||||
|
||||
rs6000)
|
||||
gdb_target=rs6000
|
||||
;;
|
||||
|
||||
### unhandled targets
|
||||
# altosgas
|
||||
# i386v-g
|
||||
|
|
Loading…
Add table
Reference in a new issue