Changeset 8135d4c for src/GenPoly/Lvalue.cc
- Timestamp:
- Aug 22, 2017, 7:31:52 PM (6 years ago)
- Branches:
- aaron-thesis, arm-eh, 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Lvalue.cc
rfc56cdbf r8135d4c 14 14 // 15 15 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 18 22 #include "Lvalue.h" 19 23 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" 29 28 #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 41 36 42 37 #if 0 … … 223 218 // at inner &, record depth D of reference type 224 219 // at outer &, add D derefs. 225 void AddrRef::premutate( Expression * expr) {220 void AddrRef::premutate( Expression * ) { 226 221 GuardValue( current ); 227 222 GuardValue( first ); … … 230 225 } 231 226 232 void AddrRef::premutate( AddressExpr * addrExpr) {227 void AddrRef::premutate( AddressExpr * ) { 233 228 GuardValue( current ); 234 229 GuardValue( first );
Note: See TracChangeset
for help on using the changeset viewer.