mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 05:47:26 +08:00
* ch-exp.y: Fix thinko that broke parsing of FALSE.
This commit is contained in:
@ -1901,7 +1901,7 @@ yylex ()
|
||||
yylval.ulval = 1;
|
||||
return (BOOLEAN_LITERAL);
|
||||
}
|
||||
if (STREQ (lexptr, "false"))
|
||||
if (STREQ (simplename, "false"))
|
||||
{
|
||||
yylval.ulval = 0;
|
||||
return (BOOLEAN_LITERAL);
|
||||
|
Reference in New Issue
Block a user