Ignore:
Timestamp:
Aug 22, 2017, 7:31:52 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
9aaac6e9
Parents:
fc56cdbf (diff), b3d413b (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' into references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/Lvalue.cc

    rfc56cdbf r8135d4c  
    1414//
    1515
    16 #include <cassert>
    17 
     16#include <cassert>                       // for safe_dynamic_cast
     17#include <string>                        // for string
     18
     19#include "Common/PassVisitor.h"
     20#include "Common/SemanticError.h"        // for SemanticError
     21#include "GenPoly.h"                     // for isPolyType
    1822#include "Lvalue.h"
    1923
    20 #include "GenPoly.h"
    21 
    22 #include "SynTree/Declaration.h"
    23 #include "SynTree/Type.h"
    24 #include "SynTree/Expression.h"
    25 #include "SynTree/Statement.h"
    26 #include "SynTree/Visitor.h"
    27 #include "SynTree/Mutator.h"
    28 #include "SymTab/Indexer.h"
     24#include "Parser/LinkageSpec.h"          // for Spec, isBuiltin, Intrinsic
     25#include "ResolvExpr/TypeEnvironment.h"  // for AssertionSet, OpenVarSet
     26#include "ResolvExpr/Unify.h"            // for unify
     27#include "ResolvExpr/typeops.h"
    2928#include "SymTab/Autogen.h"
    30 
    31 #include "ResolvExpr/Resolver.h"
    32 #include "ResolvExpr/TypeEnvironment.h"
    33 #include "ResolvExpr/typeops.h"
    34 #include "ResolvExpr/Unify.h"
    35 
    36 #include "Common/UniqueName.h"
    37 #include "Common/utility.h"
    38 #include "Common/PassVisitor.h"
    39 
    40 #include "InitTweak/InitTweak.h"
     29#include "SymTab/Indexer.h"              // for Indexer
     30#include "SynTree/Declaration.h"         // for Declaration, FunctionDecl
     31#include "SynTree/Expression.h"          // for Expression, ConditionalExpr
     32#include "SynTree/Mutator.h"             // for mutateAll, Mutator
     33#include "SynTree/Statement.h"           // for ReturnStmt, Statement (ptr o...
     34#include "SynTree/Type.h"                // for PointerType, Type, FunctionType
     35#include "SynTree/Visitor.h"             // for Visitor, acceptAll
    4136
    4237#if 0
     
    223218                // at inner &, record depth D of reference type
    224219                // at outer &, add D derefs.
    225                 void AddrRef::premutate( Expression * expr ) {
     220                void AddrRef::premutate( Expression * ) {
    226221                        GuardValue( current );
    227222                        GuardValue( first );
     
    230225                }
    231226
    232                 void AddrRef::premutate( AddressExpr * addrExpr ) {
     227                void AddrRef::premutate( AddressExpr * ) {
    233228                        GuardValue( current );
    234229                        GuardValue( first );
Note: See TracChangeset for help on using the changeset viewer.