Re: [PATCH 0/4] Move pass-creation logic into a passes.def file

2013-07-18 Thread Andrew Pinski
On Wed, Jul 17, 2013 at 6:18 PM, David Malcolm wrote: > The following patch series moves the logic for creating the > pipeline of optimization passes out from passes.c and into a new > passes.def file (patches 1 and 2). > > It then explicitly numbers those passes that have multiple instances, by >

[PATCH 0/4] Move pass-creation logic into a passes.def file

2013-07-17 Thread David Malcolm
The following patch series moves the logic for creating the pipeline of optimization passes out from passes.c and into a new passes.def file (patches 1 and 2). It then explicitly numbers those passes that have multiple instances, by using a NEXT_PASS_NUM macro in place of NEXT_PASS (patch 3) The