https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103311
Tamar Christina <tnfchris at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |tnfchris at gcc dot gnu.org --- Comment #2 from Tamar Christina <tnfchris at gcc dot gnu.org> --- Both sides of the VEC_PERM_EXPR need to be a multiply, the check is currently if (!mul0 && !mul1) return IFN_LAST; while it should be if (!mul0 || !mul1) return IFN_LAST; testing a patch.