- Timestamp:
- Apr 28, 2018, 10:33:07 AM (7 years ago)
- 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, with_gc
- Children:
- 9997fee
- Parents:
- ac4dad2
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/DeclarationNode.cc
rac4dad2 r6926a6d 10 10 // Created On : Sat May 16 12:34:05 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 20 22:37:20 201813 // Update Count : 106 312 // Last Modified On : Thu Apr 26 13:45:10 2018 13 // Update Count : 1064 14 14 // 15 15 … … 783 783 DeclarationNode * DeclarationNode::addPointer( DeclarationNode * p ) { 784 784 if ( p ) { 785 assert( p->type->kind == TypeData::Pointer || TypeData::Reference );785 assert( p->type->kind == TypeData::Pointer || p->type->kind == TypeData::Reference ); 786 786 setBase( p->type ); 787 787 p->type = nullptr; -
src/Parser/TypeData.cc
rac4dad2 r6926a6d 10 10 // Created On : Sat May 16 15:12:51 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Apr 17 23:00:52201813 // Update Count : 60 212 // Last Modified On : Thu Apr 26 13:46:07 2018 13 // Update Count : 603 14 14 // 15 15 … … 62 62 enumeration.constants = nullptr; 63 63 enumeration.body = false; 64 break; 64 65 case Aggregate: 65 66 // aggregate = new Aggregate_t; -
src/SymTab/Autogen.cc
rac4dad2 r6926a6d 9 9 // Author : Rob Schluntz 10 10 // Created On : Thu Mar 03 15:45:56 2016 11 // Last Modified By : Andrew Beach12 // Last Modified On : Fri Jul 14 16:41:00 201713 // Update Count : 6 211 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 27 14:39:06 2018 13 // Update Count : 63 14 14 // 15 15 … … 331 331 definitions.push_back( dcl ); 332 332 indexer.addId( dcl ); 333 } catch ( SemanticErrorException err) {333 } catch ( SemanticErrorException & ) { 334 334 // okay if decl does not resolve - that means the function should not be generated 335 335 delete dcl;
Note: See TracChangeset
for help on using the changeset viewer.