diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/function.h b/gcc/function.h index b3e750fd6b0..0c1ca1aba5f 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -162,7 +162,6 @@ struct expr_status GTY(()) struct function GTY(()) { struct eh_status *eh; - struct stmt_status *stmt; struct expr_status *expr; struct emit_status *emit; struct varasm_status *varasm; @@ -276,15 +275,6 @@ struct function GTY(()) /* Current nesting level for temporaries. */ int x_temp_slot_level; - /* Current nesting level for variables in a block. */ - int x_var_temp_slot_level; - - /* When temporaries are created by TARGET_EXPRs, they are created at - this level of temp_slot_level, so that they can remain allocated - until no longer needed. CLEANUP_POINT_EXPRs define the lifetime - of TARGET_EXPRs. */ - int x_target_temp_slot_level; - /* This slot is initialized as 0 and is added to during the nested function. */ struct var_refs_queue *fixup_var_refs_queue; @@ -492,8 +482,6 @@ extern int trampolines_created; #define used_temp_slots (cfun->x_used_temp_slots) #define avail_temp_slots (cfun->x_avail_temp_slots) #define temp_slot_level (cfun->x_temp_slot_level) -#define target_temp_slot_level (cfun->x_target_temp_slot_level) -#define var_temp_slot_level (cfun->x_var_temp_slot_level) #define nonlocal_labels (cfun->x_nonlocal_labels) #define nonlocal_goto_handler_labels (cfun->x_nonlocal_goto_handler_labels) |