Re: c plugin guidance wanted

2018-07-30 Thread Joe Perches
On Mon, 2018-07-30 at 10:51 -0400, David Malcolm wrote: > On Sun, 2018-07-29 at 13:41 -0700, Joe Perches wrote: > > I would like to implement a gcc plugin that can compress an > > __attribute__((format(printf, x, y))) const char array before > > storage so that the formats can be size reduced when

Re: c plugin guidance wanted

2018-07-30 Thread David Malcolm
On Sun, 2018-07-29 at 13:41 -0700, Joe Perches wrote: > I would like to implement a gcc plugin that can compress an > __attribute__((format(printf, x, y))) const char array before > storage so that the formats can be size reduced when stored and > expanded appropriately before use. > > As this is

c plugin guidance wanted

2018-07-29 Thread Joe Perches
I would like to implement a gcc plugin that can compress an __attribute__((format(printf, x, y))) const char array before storage so that the formats can be size reduced when stored and expanded appropriately before use. As this is the first plugin I am trying to implement, I'm a bit lost in detai