Re: [PATCH] Added PLUGIN_FINISH_TYPE callback on enum type processing

2015-02-02 Thread Bruno Loff
Sorry, first contribution ever :) Here is the entry: 2014-10-19 Bruno Loff * 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

Re: [PATCH] Added PLUGIN_FINISH_TYPE callback on enum type processing

2015-02-02 Thread Bruno Loff
Something like: The PLUGIN_FINISH_TYPE callback for gcc plugins is now triggered for enum declarations. ? On 2 February 2015 at 20:03, Diego Novillo wrote: > On Thu, Jan 29, 2015 at 4:32 PM, Bruno Loff wrote: >> >> The issue was first reported by Joachim Wieland t

Re: [PATCH] Added PLUGIN_FINISH_TYPE callback on enum type processing

2015-02-02 Thread Bruno Loff
I am forwarding this reply to Cary Coutant, Diego Novillo and Le-Chun Wu, as they were listed as the plugin maintainers. Cary, Diego, Le-Chun, please let me know if you are on it, or if I should send it to someone else. On 29 January 2015 at 22:32, Bruno Loff wrote: > The issue was fi

Re: [PATCH] Added PLUGIN_FINISH_TYPE callback on enum type processing

2015-02-01 Thread Bruno Loff
Do I need to do anything else to get this patch into gcc? On 29 January 2015 at 22:32, Bruno Loff wrote: > The issue was first reported by Joachim Wieland to the list > g...@gcc.gnu.org, on Wed, > Jan 19, 2011 (Subject: PLUGIN_FINISH_TYPE not executed for enums). > > > A

[PATCH] Added PLUGIN_FINISH_TYPE callback on enum type processing

2015-01-29 Thread Bruno Loff
The issue was first reported by Joachim Wieland to the list g...@gcc.gnu.org, on Wed, Jan 19, 2011 (Subject: PLUGIN_FINISH_TYPE not executed for enums). A description of the problem/bug and how my patch addresses it.