https://gcc.gnu.org/bugzilla/show_bug.cgi?id=126160
--- Comment #2 from Hongtao Liu <liuhongt at gcc dot gnu.org> ---
void
foo (long *a, float* b)
{
a[0] = __builtin_lrintf (b[0]);
a[1] = __builtin_lrintf (b[1]);
a[2] = __builtin_lrintf (b[2]);
a[3] = __builtin_lrintf (b[3]);
}
Looks like we also need lrintv4sfv4di2.
