Hi! On Thu, Nov 17, 2016 at 01:55:25PM -0500, Michael Meissner wrote: > Are these patches ok to change into the trunk? Since the bug shows up in GCC > 6.x, can I apply and submit these patches to the GCC 6.x branch?
This is okay for trunk. Please watch that for regressions for a week or so before backporting (unless it is urgent for 6?) One question... > + case DFmode: > + if ((!TARGET_POWERPC64 && !TARGET_DF_FPR) || !TARGET_P9_FUSION) > + return 0; > + break; > case DFmode: > - if (!TARGET_DF_FPR) > + if (!TARGET_POWERPC64 && !TARGET_DF_FPR) > return 0; > break; These conditions aren't obvious, could you add a comment please? Segher