Changeset 7ece922


Ignore:
Timestamp:
Aug 23, 2017, 9:02:46 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cc

    rcb811ac r7ece922  
    206206                        for ( std::list< Declaration* >::iterator i = memb.begin(); i != memb.end(); i++ ) {
    207207                                updateLocation( *i );
     208                                output << indent;
    208209                                (*i)->accept( *this );
    209210                                output << ";" << endl;
     
    245246                                assert( obj );
    246247                                updateLocation( obj );
    247                                 output << mangleName( obj );
     248                                output << indent << mangleName( obj );
    248249                                if ( obj->get_init() ) {
    249250                                        output << " = ";
Note: See TracChangeset for help on using the changeset viewer.