Ignore:
Timestamp:
Jul 25, 2019, 9:34:18 PM (5 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
033ff37
Parents:
a92a4fe
Message:

add gcc auto_type to parsing side

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    ra92a4fe rf673c13c  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Jul 14 07:54:30 2019
    13 // Update Count     : 4355
     12// Last Modified On : Thu Jul 25 15:49:52 2019
     13// Update Count     : 4356
    1414//
    1515
     
    272272%token ZERO_T ONE_T                                                                             // CFA
    273273%token VALIST                                                                                   // GCC
     274%token AUTO_TYPE                                                                                // GCC
    274275%token TYPEOF BASETYPEOF LABEL                                                  // GCC
    275276%token ENUM STRUCT UNION
     
    18711872        | VALIST                                                                                        // GCC, __builtin_va_list
    18721873                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); }
     1874        | AUTO_TYPE
     1875                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::AutoType ); }
    18731876        ;
    18741877
Note: See TracChangeset for help on using the changeset viewer.