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: Add x86 integer intrinsics


> Well, it isn't the case. At -O2, I got
>
> #include <x86intrin.h>
>
> int
> rol(int x, int y)
> {
>  return (x << y) | (x >> (32 - y));
>  }

Your code is bogus. Use unsigned int.

Paul


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