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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2023-08-20
             Status|UNCONFIRMED                 |NEW
             Target|                            |x86_64-linux-gnu
     Ever confirmed|0                           |1
           Keywords|                            |needs-bisection

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced testcase at `-O3 -mavx512f`:
```
long minarray2(const long *input) {
  if (input[0] < input[1])
    return input[0] ;
  return input[1];
}
```

Reply via email to