https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106833
--- Comment #11 from Kewen Lin <linkw at gcc dot gnu.org> ---
One modified case from pr102347.c (same option set is used), which can
reproduce the ICE without any gcc source adjustment.
#pragma GCC target "cpu=power10"
int main ()
{
float *b;
const __vector_quad c;
__builtin_mma_disassemble_acc (b, &c);
return 0;
}
