mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-12 02:16:17 +00:00
Lex integers as unsigned long instead of signed int, fixing the immediate test.
This commit is contained in:
parent
d72f5c9828
commit
d1b8791928
@ -294,7 +294,7 @@ int saved_state = INITIAL;
|
|||||||
}
|
}
|
||||||
|
|
||||||
[0-9]* {
|
[0-9]* {
|
||||||
yylval.integer = atoi(yytext);
|
yylval.integer = strtoul(yytext, NULL, 10);
|
||||||
return INTEGER;
|
return INTEGER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user