https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97311

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2020-10-07
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I wonder why we don't just use uint32_t everywhere instead of those
metafunctions.

uint32_t __r3 = ...;
uint32_t __r4 = ...;
// ...
__begin[(__k + __p) % __n] = (uint32_t)__begin[(__k + __p) % __n] + __r3;
__begin[(__k + __q) % __n] = (uint32_t)__begin[(__k + __q) % __n] + __r4;

Reply via email to