Ignore:
Timestamp:
Apr 28, 2015, 4:21:36 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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:
42e2ad7
Parents:
ad17ba6a
Message:

fixed sizeof type variable, find lowest cost alternative for sizeof expression, removed unused classes, added compiler flag, remove temporary file for -CFA, formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/Parser/cfa.y

    rad17ba6a rbdd516a  
    1010 * Created On       : Sat Sep  1 20:22:55 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Sat Jan 17 09:23:45 2015
    13  * Update Count     : 908
     12 * Last Modified On : Wed Apr 15 15:11:16 2015
     13 * Update Count     : 913
    1414 */
    1515
     
    11441144        declaration_specifier declarator asm_name_opt initializer_opt
    11451145                {
    1146                         typedefTable.addToEnclosingScope( TypedefTable::ID);
     1146                        typedefTable.addToEnclosingScope( TypedefTable::ID );
    11471147                        $$ = ($2->addType( $1 ))->addInitializer($4);
    11481148                }
     
    12011201        | LVALUE                                        /* CFA */
    12021202                { $$ = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); }
     1203        | ATOMIC
     1204                { $$ = DeclarationNode::newQualifier( DeclarationNode::Atomic ); }
    12031205        | FORALL '('
    12041206                {
Note: See TracChangeset for help on using the changeset viewer.