Changeset 7ece922
- Timestamp:
- Aug 23, 2017, 9:02:46 PM (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, resolv-new, with_gc
- Children:
- 1efa1e1, a1f7064
- Parents:
- cb811ac (diff), 87e08e24 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
rcb811ac r7ece922 206 206 for ( std::list< Declaration* >::iterator i = memb.begin(); i != memb.end(); i++ ) { 207 207 updateLocation( *i ); 208 output << indent; 208 209 (*i)->accept( *this ); 209 210 output << ";" << endl; … … 245 246 assert( obj ); 246 247 updateLocation( obj ); 247 output << mangleName( obj );248 output << indent << mangleName( obj ); 248 249 if ( obj->get_init() ) { 249 250 output << " = ";
Note: See TracChangeset
for help on using the changeset viewer.