Changeset 07ca4dd for src/AST


Ignore:
Timestamp:
Jun 18, 2019, 9:30:42 AM (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:
bc92bee
Parents:
8220e50 (diff), ea05f8d (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' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
src/AST
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Convert.cpp

    r8220e50 r07ca4dd  
    1010// Created On       : Thu May 09 15::37::05 2019
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Man Jun 10 11:51:00 2019
    13 // Update Count     : 11
     12// Last Modified On : Mon Jun 17 16:44:00 2019
     13// Update Count     : 12
    1414//
    1515
     
    949949        const ast::Expr * visit( const ast::TupleExpr * node ) override final {
    950950                auto expr = visitBaseExpr( node,
    951                         new UntypedTupleExpr(
     951                        new TupleExpr(
    952952                                get<Expression>().acceptL(node->exprs)
    953953                        )
     
    14701470                decl->mangleName = old->mangleName;
    14711471                decl->isDeleted  = old->isDeleted;
     1472                decl->asmName    = GET_ACCEPT_1(asmName, Expr);
    14721473                decl->uniqueId   = old->uniqueId;
    14731474                decl->extension  = old->extension;
     
    14941495                decl->mangleName = old->mangleName;
    14951496                decl->isDeleted  = old->isDeleted;
     1497                decl->asmName    = GET_ACCEPT_1(asmName, Expr);
    14961498                decl->uniqueId   = old->uniqueId;
    14971499                decl->extension  = old->extension;
  • src/AST/TypeEnvironment.hpp

    r8220e50 r07ca4dd  
    215215std::ostream & operator<<( std::ostream & out, const TypeEnvironment & env );
    216216
    217 }
     217} // namespace ast
    218218
    219219// Local Variables: //
  • src/AST/porting.md

    r8220e50 r07ca4dd  
    302302* `ExplodedActual.h` => `ExplodedArg.hpp`
    303303
     304`polyCost`
     305* switched order of `env`, `symtab` parameters for better consistency
     306
    304307[1] https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Type-Attributes.html#Type-Attributes
    305308
Note: See TracChangeset for help on using the changeset viewer.