diff options
author | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2012-06-12 22:50:44 +0000 |
---|---|---|
committer | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2012-06-12 22:50:44 +0000 |
commit | 2202d7cd99f78692544dfe0b001375a4f8143952 (patch) | |
tree | b535f72bb7a60e93af5847a3d59e58f45a7bedfb | |
parent | 8b3ee56d30019718f86b4bde27d440f11af24ab0 (diff) | |
download | gdb-2202d7cd99f78692544dfe0b001375a4f8143952.zip gdb-2202d7cd99f78692544dfe0b001375a4f8143952.tar.gz gdb-2202d7cd99f78692544dfe0b001375a4f8143952.tar.bz2 |
2012-06-12 Rafael Ávila de Espíndola <respindola@mozilla.com>
* plugin-api.h (ld_plugin_output_file_type): Add LDPO_PIE.
-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 6f6066e..d0d196b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2012-06-12 Rafael Ávila de Espíndola <respindola@mozilla.com> + + * plugin-api.h (ld_plugin_output_file_type): Add LDPO_PIE. + 2012-06-08 Jakub Jelinek <jakub@redhat.com> * dwarf2.def (DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt): New diff --git a/include/plugin-api.h b/include/plugin-api.h index 122424c..3220142 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -66,7 +66,8 @@ enum ld_plugin_output_file_type { LDPO_REL, LDPO_EXEC, - LDPO_DYN + LDPO_DYN, + LDPO_PIE }; /* An input file managed by the plugin library. */ |