Changeset 5541ea3d for src/ControlStruct
- Timestamp:
- Aug 4, 2021, 2:40:11 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 199894e
- Parents:
- 0640189e (diff), df5b2c8 (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. - Location:
- src/ControlStruct
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptTranslate.cc
r0640189e r5541ea3d 9 9 // Author : Andrew Beach 10 10 // Created On : Wed Jun 14 16:49:00 2017 11 // Last Modified By : Andrew Beach12 // Last Modified On : Wed Jun 24 11:18:00 202013 // Update Count : 1 711 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Aug 03 10:05:51 2021 13 // Update Count : 18 14 14 // 15 15 … … 320 320 static_cast<ObjectDecl *>( handler->get_decl() ); 321 321 ObjectDecl * local_except = handler_decl->clone(); 322 local_except->set_init( 323 new ListInit({ new SingleInit( 324 new VirtualCastExpr( nameOf( except_obj ), 325 local_except->get_type() 326 ) 327 ) }) 322 VirtualCastExpr * vcex = new VirtualCastExpr( 323 nameOf( except_obj ), 324 local_except->get_type() 328 325 ); 326 vcex->location = handler->location; 327 local_except->set_init( new ListInit({ new SingleInit( vcex ) }) ); 329 328 block->push_back( new DeclStmt( local_except ) ); 330 329 … … 392 391 393 392 // Check for type match. 394 Expression * cond = UntypedExpr::createAssign( nameOf( local_except ), 395 new VirtualCastExpr( nameOf( except_obj ), 396 local_except->get_type()->clone() ) ); 393 VirtualCastExpr * vcex = new VirtualCastExpr( 394 nameOf( except_obj ), 395 local_except->get_type()->clone() 396 ); 397 vcex->location = modded_handler->location; 398 Expression * cond = UntypedExpr::createAssign( 399 nameOf( local_except ), vcex ); 397 400 398 401 // Add the check on the conditional if it is provided. -
src/ControlStruct/module.mk
r0640189e r5541ea3d 10 10 ## Author : Richard C. Bilson 11 11 ## Created On : Mon Jun 1 17:49:17 2015 12 ## Last Modified By : Andrew Beach13 ## Last Modified On : Wed Jun 28 16:15:00 201714 ## Update Count : 412 ## Last Modified By : Henry Xue 13 ## Last Modified On : Tue Jul 20 04:10:50 2021 14 ## Update Count : 5 15 15 ############################################################################### 16 16 17 17 SRC_CONTROLSTRUCT = \ 18 ControlStruct/ExceptDecl.cc \ 19 ControlStruct/ExceptDecl.h \ 18 20 ControlStruct/ForExprMutator.cc \ 19 21 ControlStruct/ForExprMutator.h \
Note:
See TracChangeset
for help on using the changeset viewer.