Changes in / [514247d:546b51e]
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/Makefile.am
r514247d r546b51e 55 55 # create forward declarations for cfa builtins 56 56 builtins.cf : builtins.c ${CC} 57 ${AM_V_GEN} gcc${AM_CFLAGS} -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po57 ${AM_V_GEN}cfa ${AM_CFLAGS} -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po 58 58 ${AM_V_at}sed -i 's/builtins.o/builtins.cf/g' $(DEPDIR)/builtins.Po 59 59 -
libcfa/prelude/Makefile.in
r514247d r546b51e 510 510 # create forward declarations for cfa builtins 511 511 builtins.cf : builtins.c ${CC} 512 ${AM_V_GEN} gcc${AM_CFLAGS} -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po512 ${AM_V_GEN}cfa ${AM_CFLAGS} -E -P ${<} -o ${@} -MD -MP -MF $(DEPDIR)/builtins.Po 513 513 ${AM_V_at}sed -i 's/builtins.o/builtins.cf/g' $(DEPDIR)/builtins.Po 514 514 -
src/GenPoly/Lvalue.cc
r514247d r546b51e 353 353 Type * destType = castExpr->result; 354 354 Type * srcType = castExpr->arg->result; 355 assertf( destType, "Cast to no type in: %s", toCString( castExpr ) ); 356 assertf( srcType, "Cast from no type in: %s", toCString( castExpr ) ); 355 357 int depth1 = destType->referenceDepth(); 356 358 int depth2 = srcType->referenceDepth(); -
src/Parser/parser.yy
r514247d r546b51e 1310 1310 1311 1311 handler_clause: 1312 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop1312 handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement 1313 1313 { $$ = new StatementNode( build_catch( $1, $4, $6, $8 ) ); } 1314 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop1314 | handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement 1315 1315 { $$ = (StatementNode *)$1->set_last( new StatementNode( build_catch( $2, $5, $7, $9 ) ) ); } 1316 1316 ; -
src/Virtual/ExpandCasts.cc
r514247d r546b51e 147 147 // ) 148 148 // ), 149 new UntypedExpr( new NameExpr( "__cfa__virtual_cast"), {149 new ApplicationExpr( VariableExpr::functionPointer( vcast_decl ), { 150 150 new CastExpr( 151 151 new AddressExpr( new VariableExpr( table ) ), 152 152 pointer_to_pvt(1) 153 153 ), 154 154 new CastExpr( 155 155 castExpr->get_arg(), 156 156 pointer_to_pvt(2) 157 158 157 ) 158 } ), 159 159 castExpr->get_result()->clone() 160 160 ); 161 161 162 162 castExpr->set_arg( nullptr );
Note: See TracChangeset
for help on using the changeset viewer.