diff options
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index 66319c7..db5bf82 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -106,15 +106,13 @@ struct ipa_opt_pass_d void (*generate_summary) (void); /* This hook is used to serialize IPA summaries on disk. */ - void (*write_summary) (struct cgraph_node_set_def *, - struct varpool_node_set_def *); + void (*write_summary) (void); /* This hook is used to deserialize IPA summaries from disk. */ void (*read_summary) (void); /* This hook is used to serialize IPA optimization summaries on disk. */ - void (*write_optimization_summary) (struct cgraph_node_set_def *, - struct varpool_node_set_def *); + void (*write_optimization_summary) (void); /* This hook is used to deserialize IPA summaries from disk. */ void (*read_optimization_summary) (void); |