Changeset ff29f08 for src/SymTab


Ignore:
Timestamp:
May 18, 2018, 2:09:21 PM (6 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
new-env, with_gc
Children:
2472a19
Parents:
f6f0cca3 (diff), c7d8100c (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 remote-tracking branch 'origin/master' into with_gc

Location:
src/SymTab
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Autogen.cc

    rf6f0cca3 rff29f08  
    99// Author           : Rob Schluntz
    1010// Created On       : Thu Mar 03 15:45:56 2016
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Fri Jul 14 16:41:00 2017
    13 // Update Count     : 62
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Fri Apr 27 14:39:06 2018
     13// Update Count     : 63
    1414//
    1515
     
    330330                        definitions.push_back( dcl );
    331331                        indexer.addId( dcl );
    332                 } catch ( SemanticErrorException err ) {
     332                } catch ( SemanticErrorException & ) {
    333333                        // okay if decl does not resolve - that means the function should not be generated
    334334                }
  • src/SymTab/Mangler.cc

    rf6f0cca3 rff29f08  
    178178                                printQualifiers( pointerType );
    179179                                mangleName << "P";
    180                                 maybeAccept( pointerType->get_base(), *visitor );
     180                                maybeAccept( pointerType->base, *visitor );
    181181                        }
    182182
     
    185185                                printQualifiers( arrayType );
    186186                                mangleName << "A0";
    187                                 maybeAccept( arrayType->get_base(), *visitor );
     187                                maybeAccept( arrayType->base, *visitor );
    188188                        }
    189189
     
    191191                                printQualifiers( refType );
    192192                                mangleName << "R";
    193                                 maybeAccept( refType->get_base(), *visitor );
     193                                maybeAccept( refType->base, *visitor );
    194194                        }
    195195
Note: See TracChangeset for help on using the changeset viewer.