diff options
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index f0ae58a..c74ed1b 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -155,6 +155,7 @@ struct rtl_opt_pass struct varpool_node; struct cgraph_node; +struct cgraph_node_set_def; /* Description of IPA pass with generate summary, write, execute, read and transform stages. */ @@ -167,7 +168,7 @@ struct ipa_opt_pass void (*generate_summary) (void); /* This hook is used to serialize IPA summaries on disk. */ - void (*write_summary) (void); + void (*write_summary) (struct cgraph_node_set_def *); /* For most ipa passes, the information can only be deserialized in one chunk. However, function bodies are read function at a time |