mirror of
https://github.com/Noratrieb/uwucc.git
synced 2026-01-16 09:35:07 +01:00
fix ints in ast
This commit is contained in:
parent
fb1ce74e08
commit
c519241bd4
5 changed files with 22 additions and 11 deletions
|
|
@ -125,16 +125,22 @@ pub enum Stmt {
|
|||
pub enum TypeSpecifier {
|
||||
Void,
|
||||
Char,
|
||||
SChar,
|
||||
UChar,
|
||||
Short,
|
||||
UShort,
|
||||
Int,
|
||||
UInt,
|
||||
Long,
|
||||
ULong,
|
||||
LongLong,
|
||||
ULongLong,
|
||||
Float,
|
||||
Double,
|
||||
Signed,
|
||||
Unsigned,
|
||||
LongDouble,
|
||||
Bool,
|
||||
Complex,
|
||||
// TODO
|
||||
// complex
|
||||
// atomic-type-specifier
|
||||
// struct-or-union-specifier
|
||||
// enum-specifier
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue