add a panic for unimplemented initializer creation
[cparser] / tokens.inc
index d5144e0..affe29c 100644 (file)
@@ -35,7 +35,6 @@ S(_ALL, long)
 S(_ALL, register)
 S(_ALL, return)
 S(_ALL, short)
-S(_ANSI|_C99, signed)
 S(_ALL, sizeof)
 S(_ALL, static)
 S(_ALL, struct)
@@ -74,6 +73,9 @@ S(_MS, __FUNCSIG__)
 S(_MS, __FUNCDNAME__)
 #undef S
 
+T(_ANSI|_C99,   signed,       "signed",)
+T(_ALL,       __signed,       "__signed",               = T_signed)
+T(_ALL,       __signed__,     "__signed__",             = T_signed)
 T(_C99|_GNUC, _Complex,       "_Complex",)
 T(_GNUC,      __complex__,    "__complex__",            = T__Complex)
 T(_GNUC,      __complex,      "__complex",              = T__Complex)
@@ -87,6 +89,7 @@ T(_GNUC|_MS,  __alignof,      "__alignof",              = T___alignof__)
 T(_MS,        _alignof,       "_alignof",               = T___alignof__)
 T(_ANSI|_C99, const,          "const",)
 T(_GNUC,      __const,        "__const",                = T_const)
+T(_GNUC,      __const__,      "__const__",              = T_const)
 T(_C99,       restrict,       "restrict",)
 T(_GNUC,      __restrict__,   "__restrict__",           = T_restrict)
 T(_GNUC,      __restrict,     "__restrict",             = T_restrict)
@@ -96,6 +99,7 @@ T(_GNUC,      __asm__,        "__asm__",                = T_asm)
 T(_MS,        _asm,           "_asm",                   = T_asm)
 T(_GNUC|_MS,  __asm,          "__asm",                  = T_asm)
 T(_ANSI|_C99, volatile,       "volatile",)
+T(_GNUC,      __volatile,     "__volatile",             = T_volatile)
 T(_GNUC,      __volatile__,   "__volatile__",           = T_volatile)
 T(_C99,       inline,         "inline",)
 T(_GNUC|_MS,  __inline,       "__inline",               = T_inline)