make extensions starting with __ available for all configurations
authorMatthias Braun <matze@braunis.de>
Tue, 27 May 2008 12:36:21 +0000 (12:36 +0000)
committerMatthias Braun <matze@braunis.de>
Tue, 27 May 2008 12:36:21 +0000 (12:36 +0000)
[r19791]

tokens.inc

index 1889df9..67af5e8 100644 (file)
@@ -77,40 +77,40 @@ 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)
+T(_ALL,       __complex__,    "__complex__",            = T__Complex)
+T(_ALL,       __complex,      "__complex",              = T__Complex)
 T(_C99|_GNUC, _Imaginary,     "_Imaginary",)
-T(_GNUC,      __real__,       "__real__",)
-T(_GNUC,      __real,         "__real",                 = T___real__)
-T(_GNUC,      __imag__,       "__imag__",)
-T(_GNUC,      __imag,         "__imag",                 = T___imag__)
-T(_GNUC|_MS,  __alignof__,    "__alignof__",)
-T(_GNUC|_MS,  __alignof,      "__alignof",              = T___alignof__)
+T(_ALL,       __real__,       "__real__",)
+T(_ALL,       __real,         "__real",                 = T___real__)
+T(_ALL,       __imag__,       "__imag__",)
+T(_ALL,       __imag,         "__imag",                 = T___imag__)
+T(_ALL,       __alignof__,    "__alignof__",)
+T(_ALL,       __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(_ALL,       __const,        "__const",                = T_const)
+T(_ALL,       __const__,      "__const__",              = T_const)
 T(_C99,       restrict,       "restrict",)
-T(_GNUC,      __restrict__,   "__restrict__",           = T_restrict)
-T(_GNUC,      __restrict,     "__restrict",             = T_restrict)
+T(_ALL,       __restrict__,   "__restrict__",           = T_restrict)
+T(_ALL,       __restrict,     "__restrict",             = T_restrict)
 T(_MS,        _restrict,      "_restrict",              = T_restrict)
 T(_ALL,       asm,            "asm",)
-T(_GNUC,      __asm__,        "__asm__",                = T_asm)
+T(_ALL,       __asm__,        "__asm__",                = T_asm)
 T(_MS,        _asm,           "_asm",                   = T_asm)
-T(_GNUC|_MS,  __asm,          "__asm",                  = T_asm)
+T(_ALL,       __asm,          "__asm",                  = T_asm)
 T(_ANSI|_C99, volatile,       "volatile",)
-T(_GNUC,      __volatile,     "__volatile",             = T_volatile)
-T(_GNUC,      __volatile__,   "__volatile__",           = T_volatile)
+T(_ALL,       __volatile,     "__volatile",             = T_volatile)
+T(_ALL,       __volatile__,   "__volatile__",           = T_volatile)
 T(_C99,       inline,         "inline",)
-T(_GNUC|_MS,  __inline,       "__inline",               = T_inline)
-T(_GNUC,      __inline__,     "__inline__",             = T_inline)
+T(_ALL,       __inline,       "__inline",               = T_inline)
+T(_ALL,       __inline__,     "__inline__",             = T_inline)
 T(_GNUC,      typeof,         "typeof",)
-T(_GNUC,      __typeof,       "__typeof",               = T_typeof)
-T(_GNUC,      __typeof__,     "__typeof__",             = T_typeof)
-T(_GNUC,      __attribute__,  "__attribute__",)
+T(_ALL,       __typeof,       "__typeof",               = T_typeof)
+T(_ALL,       __typeof__,     "__typeof__",             = T_typeof)
+T(_ALL,       __attribute__,  "__attribute__",)
 
-T(_GNUC,     __builtin_va_start,     "__builtin_va_start",)
-T(_GNUC,     __builtin_stdarg_start, "__builtin_stdarg_start", = T___builtin_va_start)
+T(_ALL,     __builtin_va_start,     "__builtin_va_start",)
+T(_ALL,     __builtin_stdarg_start, "__builtin_stdarg_start", = T___builtin_va_start)
 
 T(_MS,      _near,            "_near",)
 T(_MS,      __near,           "__near",                  = T__near)