Changeset e3e16bc for src/GenPoly/Box.cc
- Timestamp:
- Sep 13, 2017, 2:34:55 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, 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:
- 982832e
- Parents:
- 9f5ecf5
- File:
-
- 1 edited
-
src/GenPoly/Box.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cc
r9f5ecf5 re3e16bc 15 15 16 16 #include <algorithm> // for mismatch 17 #include <cassert> // for assert, s afe_dynamic_cast17 #include <cassert> // for assert, strict_dynamic_cast 18 18 #include <iostream> // for operator<<, stringstream 19 19 #include <list> // for list, list<>::iterator, _Lis... … … 1299 1299 1300 1300 DeclarationWithType * Pass2::mutate( FunctionDecl *functionDecl ) { 1301 functionDecl = s afe_dynamic_cast< FunctionDecl * > ( handleDecl( functionDecl ) );1301 functionDecl = strict_dynamic_cast< FunctionDecl * > ( handleDecl( functionDecl ) ); 1302 1302 FunctionType * ftype = functionDecl->get_functionType(); 1303 1303 if ( ! ftype->get_returnVals().empty() && functionDecl->get_statements() ) { … … 1378 1378 // move polymorphic return type to parameter list 1379 1379 if ( isDynRet( funcType ) ) { 1380 ObjectDecl *ret = s afe_dynamic_cast< ObjectDecl* >( funcType->get_returnVals().front() );1380 ObjectDecl *ret = strict_dynamic_cast< ObjectDecl* >( funcType->get_returnVals().front() ); 1381 1381 ret->set_type( new PointerType( Type::Qualifiers(), ret->get_type() ) ); 1382 1382 funcType->get_parameters().push_front( ret );
Note:
See TracChangeset
for help on using the changeset viewer.