mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-09 23:32:21 +08:00
* c-exp.y (lcurly, rcurly): New nonterminals.
* c-exp.y (exp): Use lcurly and rcurly for arrays and UNOP_MEMVAL constructs. * parse.c (free_funcalls): Moved prototype from parser-defs.h, made function static. * parse.c (struct funcall): Moved struct def from parser-defs.h. * parse.c (funcall_chain): Moved from parser-defs.h, made static. * parse.c (start_arglist): * parser-defs.h (free_funcalls): Moved prototype to parse.c. * parser-defs.h (struct funcall): Moved struct def to parse.c. * parser-defs.h (funcall_chain): Moved to parse.c. * printcmd.c (print_frame_nameless_args): Fix prototype. * tm-mips.h (setup_arbitrary_frame): Fix prototype. * tm-sparc.h (setup_arbitrary_frame): Fix prototype. * valops.c (typecmp): Moved prototype from values.h. * value.h (typecmp): Moved prototype to valops.c, made static. **** start-sanitize-chill **** * ch-exp.y (yylex): Change way control sequences are disabled. **** end-sanitize-chill ****
This commit is contained in:
@ -1420,7 +1420,7 @@ match_character_literal ()
|
||||
|
||||
if ((*tokptr == '^') && (*(tokptr + 1) == '('))
|
||||
{
|
||||
return (0); /* Disable, see note above. */
|
||||
#if 0 /* Disable, see note above. -fnf */
|
||||
/* Match and decode a control sequence. Return zero if we don't
|
||||
find a valid integer literal, or if the next unconsumed character
|
||||
after the integer literal is not the trailing ')'.
|
||||
@ -1431,6 +1431,9 @@ match_character_literal ()
|
||||
{
|
||||
return (0);
|
||||
}
|
||||
#else
|
||||
return (0);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user