diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2010-06-02 00:08:58 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2010-06-02 00:08:58 +0000 |
commit | 621e1f2e99226f315f1b66d828e78c69afb6063f (patch) | |
tree | d086ca8e235db3c08c6bb8b6c41483a4bdc061f6 /include | |
parent | 2eb79bbbb3c1e5310d20501d3fa03de04cd392b0 (diff) | |
download | gcc-621e1f2e99226f315f1b66d828e78c69afb6063f.tar.gz |
plugin-api.h (ld_plugin_tag): Add LDPT_OUTPUT_NAME.
2010-06-01 Rafael Espindola <espindola@google.com>
* plugin-api.h (ld_plugin_tag): Add LDPT_OUTPUT_NAME.
From-SVN: r160126
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/plugin-api.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 65cc946df6c..e65a8f2b9ac 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2010-06-01 Rafael Espindola <espindola@google.com> + + * plugin-api.h (ld_plugin_tag): Add LDPT_OUTPUT_NAME. + 2010-04-26 Pedro Alves <pedro@codesourcery.com> * filenames.h (PATH_SEPARATOR): Delete. diff --git a/include/plugin-api.h b/include/plugin-api.h index 572621fc374..582178554b3 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -260,7 +260,8 @@ enum ld_plugin_tag LDPT_MESSAGE, LDPT_GET_INPUT_FILE, LDPT_RELEASE_INPUT_FILE, - LDPT_ADD_INPUT_LIBRARY + LDPT_ADD_INPUT_LIBRARY, + LDPT_OUTPUT_NAME }; /* The plugin transfer vector. */ |