diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index 1903b16..94c8101 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -189,6 +189,9 @@ struct function GTY(()) /* The control flow graph for this function. */ struct control_flow_graph *cfg; + /* The loops in this function. */ + struct loops * GTY((skip)) x_current_loops; + /* For function.c. */ /* Points to the FUNCTION_DECL of this function. */ @@ -520,6 +523,7 @@ extern int trampolines_created; #define avail_temp_slots (cfun->x_avail_temp_slots) #define temp_slot_level (cfun->x_temp_slot_level) #define nonlocal_goto_handler_labels (cfun->x_nonlocal_goto_handler_labels) +#define current_loops (cfun->x_current_loops) /* Given a function decl for a containing function, return the `struct function' for it. */ |