On Mon, Oct 01, 2018 at 11:09:44PM -0500, Aaron Sawdey wrote: > PR/87474 happens because I didn't check that both vector and VSX instructions > were enabled, so insns that are disabled get generated with > -mno-power8-vector.
> PR target/87474 > * config/rs6000/rs6000-string.c (expand_strn_compare): Check that both > vector and VSX are enabled. You mean "P8 vector" or similar, I think? > --- gcc/config/rs6000/rs6000-string.c (revision 264760) > +++ gcc/config/rs6000/rs6000-string.c (working copy) > @@ -2205,6 +2205,7 @@ > } > else > { > + /* Implies TARGET_P8_VECTOR here. */ That isn't true as far as I see. Okay for trunk with improved changelog and that stray line removed. Thanks! Segher