Treat __thread as storage class.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sat, 23 Aug 2008 10:06:40 +0000 (10:06 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sat, 23 Aug 2008 10:06:40 +0000 (10:06 +0000)
[r21377]

parser.c

index ce9f538..7fac835 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -165,7 +165,8 @@ static void semantic_comparison(binary_expression_t *expression);
        case T_extern:          \
        case T_static:          \
        case T_auto:            \
-       case T_register:
+       case T_register:        \
+       case T___thread:
 
 #define TYPE_QUALIFIERS     \
        case T_const:           \