Remove outdated comments

This commit is contained in:
Tim Chevalier 2011-06-28 17:47:57 -07:00
parent 8c757fcd40
commit db478ed4de
2 changed files with 0 additions and 2 deletions

View File

@ -346,7 +346,6 @@ fn find_pre_post_expr(&fn_ctxt fcx, @expr e) {
case (none) { clear_pp(expr_pp(fcx.ccx, e)); }
}
}
// FIXME this was just put in here as a placeholder
case (expr_fn(?f)) { clear_pp(expr_pp(fcx.ccx, e)); }
case (expr_block(?b)) {
find_pre_post_block(fcx, b);

View File

@ -337,7 +337,6 @@ fn find_pre_post_state_expr(&fn_ctxt fcx, &prestate pres, @expr e) -> bool {
}
}
case (expr_lit(?l)) { ret pure_exp(fcx.ccx, e.id, pres); }
// FIXME This was just put in here as a placeholder
case (expr_fn(?f)) { ret pure_exp(fcx.ccx, e.id, pres); }
case (expr_block(?b)) {
ret find_pre_post_state_block(fcx, pres, b) |