Changeset 589a70b
- Timestamp:
- Jun 14, 2018, 4:21:48 PM (6 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 29f9e20
- Parents:
- eaa6430
- git-author:
- Rob Schluntz <rschlunt@…> (06/14/18 16:21:24)
- git-committer:
- Rob Schluntz <rschlunt@…> (06/14/18 16:21:48)
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cc
reaa6430 r589a70b 1163 1163 1164 1164 std::string fname = getFunctionName( appExpr ); 1165 if ( fname == function-> get_name()) {1165 if ( fname == function->name ) { 1166 1166 // call to same kind of function 1167 Expression * firstParam = appExpr-> get_args().front();1167 Expression * firstParam = appExpr->args.front(); 1168 1168 1169 1169 if ( isThisExpression( firstParam, thisParam ) ) { … … 1174 1174 // if first parameter is a member expression on the this parameter, 1175 1175 // then remove the member from unhandled set. 1176 if ( isThisExpression( memberExpr-> get_aggregate(), thisParam ) ) {1177 unhandled.erase( memberExpr-> get_member());1176 if ( isThisExpression( memberExpr->aggregate, thisParam ) ) { 1177 unhandled.erase( memberExpr->member ); 1178 1178 } 1179 1179 } -
src/SymTab/Indexer.cc
reaa6430 r589a70b 499 499 makeWritable(); 500 500 501 const std::string &id = decl-> get_name();501 const std::string &id = decl->name; 502 502 TypeTable::iterator existing = tables->typeTable.find( id ); 503 503 if ( existing == tables->typeTable.end() ) { … … 532 532 makeWritable(); 533 533 534 const std::string &id = decl-> get_name();534 const std::string &id = decl->name; 535 535 StructTable::iterator existing = tables->structTable.find( id ); 536 536 if ( existing == tables->structTable.end() ) { … … 551 551 makeWritable(); 552 552 553 const std::string &id = decl-> get_name();553 const std::string &id = decl->name; 554 554 EnumTable::iterator existing = tables->enumTable.find( id ); 555 555 if ( existing == tables->enumTable.end() ) { … … 575 575 makeWritable(); 576 576 577 const std::string &id = decl-> get_name();577 const std::string &id = decl->name; 578 578 UnionTable::iterator existing = tables->unionTable.find( id ); 579 579 if ( existing == tables->unionTable.end() ) { … … 594 594 makeWritable(); 595 595 596 const std::string &id = decl-> get_name();596 const std::string &id = decl->name; 597 597 TraitTable::iterator existing = tables->traitTable.find( id ); 598 598 if ( existing == tables->traitTable.end() ) { -
src/prelude/prelude.cf
reaa6430 r589a70b 728 728 forall( dtype DT ) void ?{}( volatile DT * &, DT * ); 729 729 forall( dtype DT ) void ?{}( volatile DT * &, volatile DT * ); 730 731 730 forall( dtype DT ) void ?{}( const volatile DT * &, DT * ); 732 731 forall( dtype DT ) void ?{}( const volatile DT * &, const DT * );
Note: See TracChangeset
for help on using the changeset viewer.