diff options
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index c18c412..b1ac95f 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -508,6 +508,10 @@ extern struct gimple_opt_pass pass_update_address_taken; /* The root of the compilation pass tree, once constructed. */ extern struct opt_pass *all_passes, *all_ipa_passes, *all_lowering_passes; +/* Current optimization pass. */ +extern struct opt_pass *current_pass; + +extern struct opt_pass * get_pass_for_id (int); extern void execute_pass_list (struct opt_pass *); extern void execute_ipa_pass_list (struct opt_pass *); extern void print_current_pass (FILE *); |