Ignore:
Timestamp:
Nov 30, 2016, 10:46:41 AM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
4cb935e
Parents:
8e5724e
Message:

Propagate zero_t one_t from parser to backend

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r8e5724e r148f7290  
    14111411                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); }
    14121412        | ZERO_T
    1413                 { $$ = DeclarationNode::newBasicType( DeclarationNode::Char ); }
     1413                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); }
    14141414        | ONE_T
    1415                 { $$ = DeclarationNode::newBasicType( DeclarationNode::Char ); }
     1415                { $$ = DeclarationNode::newBuiltinType( DeclarationNode::One ); }
    14161416        ;
    14171417
Note: See TracChangeset for help on using the changeset viewer.