Changeset 6db50d5 for src/ResolvExpr/Resolver.cc
- Timestamp:
- Jun 1, 2015, 2:00:59 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, string, with_gc
- Children:
- 6c4ff37
- Parents:
- 76934fb (diff), d1d17f5 (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/ResolvExpr/Resolver.cc
r76934fb r6db50d5 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sun May 17 12:17:01 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sun May 17 12:18:17201513 // Update Count : 2 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Mon Jun 01 13:47:16 2015 13 // Update Count : 21 14 14 // 15 15 … … 157 157 initContext = new_type; 158 158 SymTab::Indexer::visit( objectDecl ); 159 160 if ( ArrayType * at = dynamic_cast< ArrayType * >( new_type ) ){ 161 BasicType arrayLenType = BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ); 162 CastExpr *castExpr = new CastExpr( at->get_dimension(), arrayLenType.clone() ); 163 Expression *newExpr = findSingleExpression( castExpr, *this ); 164 delete at->get_dimension(); 165 at->set_dimension( newExpr ); 166 } 159 167 } 160 168
Note: See TracChangeset
for help on using the changeset viewer.