diff options
Diffstat (limited to 'gcc/integrate.h')
-rw-r--r-- | gcc/integrate.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index b2acf5e5c1d..f0c46ff1ddc 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -122,6 +122,13 @@ extern void try_constants PROTO((rtx, struct inline_remap *)); extern void mark_stores PROTO((rtx, rtx)); +/* Return the label indicated. */ +extern rtx get_label_from_map PROTO((struct inline_remap *, int)); + +/* Set the label indicated. */ +#define set_label_in_map(map, i, x) \ + ((map)->label_map[i] = (x)) + /* Unfortunately, we need a global copy of const_equiv map for communication with a function called from note_stores. Be *very* careful that this is used properly in the presence of recursion. */ |