Fix of binary literals. Bump version to 0.3.32. Renamed rotate_right and rotate_left to rotl and rotr which are the commonly used names.

This commit is contained in:
Christoffer Lerno
2022-08-28 21:42:36 +02:00
parent 27a0e12979
commit b863ae2ec5
6 changed files with 290 additions and 11 deletions

View File

@@ -1126,6 +1126,7 @@ static Expr *parse_integer(ParseContext *c, Expr *left)
}
break;
case 'b':
is_unsigned = true;
max = UINT64_MAX >> 1;
for (size_t loc = 2; loc < len; loc++)
{