aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorespindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4>2011-03-23 14:06:24 +0000
committerespindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4>2011-03-23 14:06:24 +0000
commitfa5d241f967cb299e7957a0ba67199aaa6fec237 (patch)
treece621f7cd980d9e6dba4239839cde4401b9f2c14 /include
parent7fe62d25ef7c4695c3ae75ba2268ee4646272853 (diff)
2010-03-23 Rafael Ávila de Espíndola <respindola@mozilla.com>
* plugin-api.h (ld_plugin_get_view): New. (ld_plugin_tag): Add LDPT_GET_VIEW. (ld_plugin_tv): Add tv_get_view. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171351 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog6
-rw-r--r--include/plugin-api.h8
2 files changed, 13 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 2b674d7c45a..a0585b08167 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,9 @@
+2010-03-23 Rafael Ávila de Espíndola <respindola@mozilla.com>
+
+ * plugin-api.h (ld_plugin_get_view): New.
+ (ld_plugin_tag): Add LDPT_GET_VIEW.
+ (ld_plugin_tv): Add tv_get_view.
+
2011-03-16 Jakub Jelinek <jakub@redhat.com>
* dwarf2.h (DW_TAG_GNU_call_site, DW_TAG_GNU_call_site_parameter,
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;