Ignore:
Timestamp:
Dec 15, 2016, 5:16:42 PM (9 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
43385ca, f7ff3fb
Parents:
5802a4f (diff), 596f987b (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 tuples

Conflicts:

src/ResolvExpr/CommonType.cc
src/tests/.expect/32/extension.txt
src/tests/.expect/32/gccExtensions.txt
src/tests/.expect/64/declarationSpecifier.txt
src/tests/.expect/64/extension.txt
src/tests/.expect/64/gccExtensions.txt
src/tests/.expect/castError.txt
src/tests/Makefile.am

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ParseNode.h

    r5802a4f r66f8528  
    1010// Created On       : Sat May 16 13:28:16 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Oct  3 18:03:08 2016
    13 // Update Count     : 636
     12// Last Modified On : Tue Dec 13 15:37:33 2016
     13// Update Count     : 643
    1414//
    1515
     
    154154Expression * build_constantFloat( const std::string &str );
    155155Expression * build_constantChar( const std::string &str );
     156Expression * build_constantZeroOne( const std::string &str );
    156157ConstantExpr * build_constantStr( const std::string &str );
    157158Expression * build_field_name_FLOATINGconstant( const std::string & str );
     
    204205        enum Aggregate { Struct, Union, Trait, NoAggregate };
    205206        enum TypeClass { Otype, Dtype, Ftype, NoTypeClass };
    206         enum BuiltinType { Valist };
     207        enum BuiltinType { Valist, Zero, One, NoBuiltinType };
    207208
    208209        static const char * storageName[];
     
    256257        DeclarationNode * addAssertions( DeclarationNode * );
    257258        DeclarationNode * addName( std::string * );
     259        DeclarationNode * addAsmName( ConstantExpr * );
    258260        DeclarationNode * addBitfield( ExpressionNode * size );
    259261        DeclarationNode * addVarArgs();
     
    308310        TypeData * type;
    309311        StorageClass storageClass;
     312        ExpressionNode * bitfieldWidth;
    310313        bool isInline, isNoreturn;
    311         std::list< std::string > attributes;
    312         ExpressionNode * bitfieldWidth;
    313314        std::unique_ptr<ExpressionNode> enumeratorValue;
    314         InitializerNode * initializer;
    315315        bool hasEllipsis;
    316316        LinkageSpec::Spec linkage;
     317        ConstantExpr *asmName;
     318        std::list< std::string > attributes;
     319        InitializerNode * initializer;
    317320        bool extension = false;
    318321        std::string error;
Note: See TracChangeset for help on using the changeset viewer.