On Thu, Oct 17, 2013 at 12:35 AM, Marek Polacek <pola...@redhat.com> wrote: > 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
Thanks, fixed. Wei Mi.