From c41143fb1d63596ff2a0f6da741b4bae73b8be16 Mon Sep 17 00:00:00 2001 From: bstarynk Date: Wed, 11 May 2011 11:13:27 +0000 Subject: 2011-05-11 Basile Starynkevitch MELT branch merged with trunk rev 173647 using svnmerge git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@173652 138bc75d-0d04-0410-961f-82ee72b054a4 --- include/plugin-api.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include/plugin-api.h') diff --git a/include/plugin-api.h b/include/plugin-api.h index 956df001a1f..7450a9e3838 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -203,6 +203,10 @@ enum ld_plugin_status (*ld_plugin_get_input_file) (const void *handle, struct ld_plugin_input_file *file); +typedef +enum ld_plugin_status +(*ld_plugin_get_view) (const void *handle, const void **viewp); + /* The linker's interface for releasing the input file. */ typedef @@ -269,7 +273,8 @@ enum ld_plugin_tag LDPT_ADD_INPUT_LIBRARY, LDPT_OUTPUT_NAME, LDPT_SET_EXTRA_LIBRARY_PATH, - LDPT_GNU_LD_VERSION + LDPT_GNU_LD_VERSION, + LDPT_GET_VIEW }; /* The plugin transfer vector. */ @@ -289,6 +294,7 @@ struct ld_plugin_tv ld_plugin_add_input_file tv_add_input_file; ld_plugin_message tv_message; ld_plugin_get_input_file tv_get_input_file; + ld_plugin_get_view tv_get_view; ld_plugin_release_input_file tv_release_input_file; ld_plugin_add_input_library tv_add_input_library; ld_plugin_set_extra_library_path tv_set_extra_library_path; -- cgit v1.2.1