On Mon, Oct 20, 2014 at 8:21 PM, Andrew MacLeod <amacl...@redhat.com> wrote: > creates cfg.h, cfganal.h, lcm.h, and loop-unroll.h to house the prototypes > for those .c files. > > cfganal.h also gets "struct edge_list" and "class control_dependences" > definitions since that is where all the routines and manipulators are > declared. > > loop-unroll.h only exports 2 routines, so rather than including that in > basic-block.h I simply included it from the 2 .c files which consume those > routines. Again, the other includes will be flattened out of basic-block.h > to just their consumers later. > > loop-unroll.c also had one function I marked as static since it wasn't > actually used anywhere else. > > bootstraps on x86_64-unknown-linux-gnu, and regressions are running... I > expect no regressions because of the nature of the changes. OK to check in > assuming everything is OK?
Ok. Thanks, Richard. > Andrew