This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH, ia64]: Fix PR 51681, ICE in gcc.dg/torture/vshuf-v2si.c (+ more)


On 01/03/2012 06:47 AM, Uros Bizjak wrote:
>    if (d->testing_p)
>      return true;
>  
> +  hi = shift < nelt ? d->op1 : d->op0;
> +  lo = shift < nelt ? d->op0 : d->op1;
> +
> +  shift %= nelt;

This bit only works for little-endian.  It's why I had that assert
for shift range 1-63, for one thing.

I guess an extra check for big-endian before the loop could fix that.
I.e.

   shift = d->perm[0];
+  if (BYTES_BIG_ENDIAN && shift > nelt)
+    return false;


r~


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]