This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
Distinguish between various integer literal types #385
Labels
enhancement
New feature or request
lexer
Issue dealing with parsing the lexical tokens of a program
parser
Issue to do with parsing the abstract syntax tree
Expanded form of #4.
Right now the only literal types are
char
,u64
(unsigned long
orunsigned int
depending on the platform), andi64
(long
orint
). The C standard requires supporting up tounsigned long long
and everything in between: http://port70.net/~nsz/c/c11/n1570.html#6.4.4.1Fixing this will require delaying literal parsing until type checking (#384).
The text was updated successfully, but these errors were encountered: