diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h index a5afd1b..f176d85 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -347,6 +347,9 @@ struct function GTY(()) /* Line number of the end of the function. */ location_t function_end_locus; + /* Array mapping insn uids to blocks. */ + VEC(tree,gc) *ib_boundaries_block; + /* The variables unexpanded so far. */ tree unexpanded_var_list; @@ -549,6 +552,11 @@ extern void number_blocks (tree); extern void clear_block_marks (tree); extern tree blocks_nreverse (tree); +extern void reset_block_changes (void); +extern void record_block_change (tree); +extern void finalize_block_changes (void); +extern void check_block_change (rtx, tree *); +extern void free_block_changes (void); /* Return size needed for stack frame based on slots so far allocated. This size counts from zero. It is not rounded to STACK_BOUNDARY; |