Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    rb1d6dd5 r68cd1ce  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jun 10 20:31:54 2015
    13 // Update Count     : 1040
     12// Last Modified On : Sat Jun 13 07:21:45 2015
     13// Update Count     : 1048
    1414//
    1515
     
    111111        ExpressionNode *en;
    112112        DeclarationNode *decl;
    113         DeclarationNode::TyCon aggKey;
     113        DeclarationNode::Aggregate aggKey;
    114114        DeclarationNode::TypeClass tclass;
    115115        StatementNode *sn;
     
    887887
    888888asm_operand:                                                                                    // GCC
    889         STRINGliteral '(' constant_expression ')'               {}
     889        STRINGliteral '(' constant_expression ')'       {}
    890890        ;
    891891
     
    12471247                { $$ = DeclarationNode::newStorageClass( DeclarationNode::Register ); }
    12481248        | INLINE                                                                                        // C99
    1249                 // INLINE is essentially a storage class specifier for functions, and hence, belongs here.
    12501249                { $$ = DeclarationNode::newStorageClass( DeclarationNode::Inline ); }
    12511250        | FORTRAN                                                                                       // C99
    12521251                { $$ = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); }
     1252        | NORETURN                                                                                      // C11
     1253                { $$ = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); }
     1254        | THREADLOCAL                                                                           // C11
     1255                { $$ = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); }
    12531256        ;
    12541257
Note: See TracChangeset for help on using the changeset viewer.