Re: Speed up insn-attrtab.c compilation

2012-05-08 Thread Michael Matz
Hi, On Mon, 7 May 2012, Mike Stump wrote: > On May 7, 2012, at 6:11 AM, Michael Matz wrote: > > I'd like to retain the #if 0 code therein, > > Can you structure this code as > > #define DEBUG 0 > > if (DEBUG) ... > > ? > > If so, that would be a preferable way to structure the code. Sure,

Re: Speed up insn-attrtab.c compilation

2012-05-07 Thread Mike Stump
On May 7, 2012, at 6:11 AM, Michael Matz wrote: > I'd like to retain the #if 0 code therein, Can you structure this code as #define DEBUG 0 if (DEBUG) ... ? If so, that would be a preferable way to structure the code. Nice work.