- Timestamp:
- Jun 18, 2019, 9:30:42 AM (6 years ago)
- 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. - Location:
- src/AST
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
r8220e50 r07ca4dd 10 10 // Created On : Thu May 09 15::37::05 2019 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : M an Jun 10 11:51:00 201913 // Update Count : 1 112 // Last Modified On : Mon Jun 17 16:44:00 2019 13 // Update Count : 12 14 14 // 15 15 … … 949 949 const ast::Expr * visit( const ast::TupleExpr * node ) override final { 950 950 auto expr = visitBaseExpr( node, 951 new UntypedTupleExpr(951 new TupleExpr( 952 952 get<Expression>().acceptL(node->exprs) 953 953 ) … … 1470 1470 decl->mangleName = old->mangleName; 1471 1471 decl->isDeleted = old->isDeleted; 1472 decl->asmName = GET_ACCEPT_1(asmName, Expr); 1472 1473 decl->uniqueId = old->uniqueId; 1473 1474 decl->extension = old->extension; … … 1494 1495 decl->mangleName = old->mangleName; 1495 1496 decl->isDeleted = old->isDeleted; 1497 decl->asmName = GET_ACCEPT_1(asmName, Expr); 1496 1498 decl->uniqueId = old->uniqueId; 1497 1499 decl->extension = old->extension; -
src/AST/TypeEnvironment.hpp
r8220e50 r07ca4dd 215 215 std::ostream & operator<<( std::ostream & out, const TypeEnvironment & env ); 216 216 217 } 217 } // namespace ast 218 218 219 219 // Local Variables: // -
src/AST/porting.md
r8220e50 r07ca4dd 302 302 * `ExplodedActual.h` => `ExplodedArg.hpp` 303 303 304 `polyCost` 305 * switched order of `env`, `symtab` parameters for better consistency 306 304 307 [1] https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Type-Attributes.html#Type-Attributes 305 308
Note: See TracChangeset
for help on using the changeset viewer.