Sorry, first contribution ever :) Here is the entry: 2014-10-19 Bruno Loff <bruno.l...@gmail.com>
* c-parser.c (c_parser_declspecs): Call invoke_plugin_callbacks after processing enum declaration. The dates are off because I actually made the change a while ago (took me a while because I needed to test it with the plugin and make sure I didn't mess it up). Bruno In case you want a diff file... diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 6cf964c..080bd61 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,8 @@ +2014-10-19 Bruno Loff <bruno.l...@gmail.com> + + * c-parser.c (c_parser_declspecs): Call invoke_plugin_callbacks after + processing enum declaration. + 2014-09-25 Thomas Schwinge <tho...@codesourcery.com> PR c++/63249 -- 1.9.1 On 2 February 2015 at 20:17, Diego Novillo <dnovi...@google.com> wrote: > On Mon, Feb 2, 2015 at 2:07 PM, Bruno Loff <bruno.l...@gmail.com> wrote: >> Something like: >> >> The PLUGIN_FINISH_TYPE callback for gcc plugins is now triggered for >> enum declarations. >> >> ? > > ChangeLog entries in GCC are pretty pick as to how they want to be > formatted. See other entries for reference and > https://gcc.gnu.org/codingconventions.html#ChangeLogs for specific > documentation. > > > Diego.