On Wed, Oct 16, 2013 at 04:25:58PM -0700, Wei Mi wrote: > +/* Return true if target platform supports macro-fusion. */ > + > +static bool > +ix86_macro_fusion_p () > +{ > + if (TARGET_FUSE_CMP_AND_BRANCH) > + return true; > + else > + return false; > +}
That looks weird, why not just static bool ix86_macro_fusion_p (void) { return TARGET_FUSE_CMP_AND_BRANCH; } ? Marek