Changeset 76e8c55 for src/SymTab
- Timestamp:
- Aug 4, 2016, 12:30:01 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, 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:
- 064e3ff, cf37a8e
- Parents:
- 8688ce1 (diff), bee4283 (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/SymTab/Validate.cc
r8688ce1 r76e8c55 541 541 if ( StructInstType *aggDecl = dynamic_cast< StructInstType * >( tyDecl->get_base() ) ) { 542 542 return new StructDecl( aggDecl->get_name() ); 543 // return aggDecl->get_baseStruct();544 543 } else if ( UnionInstType *aggDecl = dynamic_cast< UnionInstType * >( tyDecl->get_base() ) ) { 545 544 return new UnionDecl( aggDecl->get_name() ); 545 } else if ( EnumInstType *enumDecl = dynamic_cast< EnumInstType * >( tyDecl->get_base() ) ) { 546 return new EnumDecl( enumDecl->get_name() ); 546 547 } else { 547 548 return ret;
Note: See TracChangeset
for help on using the changeset viewer.