diff options
author | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-18 16:45:51 +0000 |
---|---|---|
committer | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-18 16:45:51 +0000 |
commit | 7d99a199519b7771c9552db92b6cd55214aad549 (patch) | |
tree | 95486a0379dfbc6f09d4c87475f4ab84e5face4a /include | |
parent | ae929441677ea4b1bb8b5d3f64a54c1fcf84b94e (diff) | |
download | gcc-7d99a199519b7771c9552db92b6cd55214aad549.tar.gz |
2010-06-18 Rafael Espindola <espindola@google.com>
* plugin.h (ld_plugin_add_input_file, ld_plugin_add_input_library):
Make argument const.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161007 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/plugin-api.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index a879adba75c..6b8053f3f29 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2010-06-18 Rafael Espindola <espindola@google.com> + + * plugin.h (ld_plugin_add_input_file, ld_plugin_add_input_library): + Make argument const. + 2010-06-08 Tristan Gingold <gingold@adacore.com> * dwarf2.h (enum dwarf_tag): Add DW_TAG_HP_Bliss_field and diff --git a/include/plugin-api.h b/include/plugin-api.h index 582178554b3..55cfe257890 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -220,13 +220,13 @@ enum ld_plugin_status typedef enum ld_plugin_status -(*ld_plugin_add_input_file) (char *pathname); +(*ld_plugin_add_input_file) (const char *pathname); /* The linker's interface for adding a library that should be searched. */ typedef enum ld_plugin_status -(*ld_plugin_add_input_library) (char *libname); +(*ld_plugin_add_input_library) (const char *libname); /* The linker's interface for issuing a warning or error message. */ |