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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|UNCONFIRMED                 |RESOLVED
   Target Milestone|---                         |15.0

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
```
unsigned int foo(unsigned int x, unsigned int y)
{
        unsigned long long  z = (unsigned long long)x * y;
        return z ^ (z >> 32);
}
```

Is Fixed for -m32 in GCC 15 so closing as fixed.

Reply via email to