mirror of
https://github.com/cc65/cc65.git
synced 2025-04-06 04:41:08 +00:00
scanner: Correct handling of \0101
The C language has this oddity that octal constants are 3 bytes so the sequence "\0101" is two bytes and well defined by the langage. cc65 currently misparses this as a 1 byte octal code. Add a count to fix this. Signed-off-by: Alan Cox <etchedpixels@gmail.com>
This commit is contained in:
parent
79e1b25c6c
commit
6ee1fd2a67
@ -267,6 +267,7 @@ static int ParseChar (void)
|
||||
{
|
||||
int C;
|
||||
int HadError;
|
||||
int Count;
|
||||
|
||||
/* Check for escape chars */
|
||||
if (CurC == '\\') {
|
||||
@ -337,8 +338,9 @@ static int ParseChar (void)
|
||||
case '7':
|
||||
/* Octal constant */
|
||||
HadError = 0;
|
||||
Count = 1;
|
||||
C = HexVal (CurC);
|
||||
while (IsODigit (NextC)) {
|
||||
while (IsODigit (NextC) && Count++ < 3) {
|
||||
if ((C << 3) >= 256) {
|
||||
if (!HadError) {
|
||||
Error ("Octal character constant out of range");
|
||||
|
Loading…
x
Reference in New Issue
Block a user