add a few more keyword synonmys found in gcc source
authorMatthias Braun <matze@braunis.de>
Wed, 19 Mar 2008 12:40:46 +0000 (12:40 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 19 Mar 2008 12:40:46 +0000 (12:40 +0000)
[r18989]

tokens.inc

index fd37a78..affe29c 100644 (file)
@@ -73,8 +73,9 @@ S(_MS, __FUNCSIG__)
 S(_MS, __FUNCDNAME__)
 #undef S
 
-T(_ANSI|_C99,   signed,         "signed",)
+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)
@@ -88,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)
@@ -97,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)