Ignore:
Timestamp:
Jun 15, 2015, 12:45:26 PM (11 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
94b4364
Parents:
ea9b9d3 (diff), a1d5d2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into resolver

Conflicts:

src/CodeGen/CodeGenerator.cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    rea9b9d3 rb5b0907  
    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.