Changeset 4cc4286 for src/SymTab
- Timestamp:
- Mar 30, 2016, 12:51:22 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 5b2f5bb
- Parents:
- 6943f051
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Autogen.cc
r6943f051 r4cc4286 99 99 //E ?=?(E volatile*, int), 100 100 // ?=?(E _Atomic volatile*, int); 101 void makeEnum Assignment( EnumDecl *enumDecl, EnumInstType *refType, unsigned int functionNesting, std::list< Declaration * > &declsToAdd ) {101 void makeEnumFunctions( EnumDecl *enumDecl, EnumInstType *refType, unsigned int functionNesting, std::list< Declaration * > &declsToAdd ) { 102 102 FunctionType *assignType = new FunctionType( Type::Qualifiers(), false ); 103 103 … … 411 411 // enumInst->set_baseEnum( enumDecl ); 412 412 // declsToAdd.push_back( 413 makeEnum Assignment( enumDecl, enumInst, functionNesting, declsToAdd );413 makeEnumFunctions( enumDecl, enumInst, functionNesting, declsToAdd ); 414 414 } 415 415 }
Note: See TracChangeset
for help on using the changeset viewer.