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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |openmp
   Last reconfirmed|                            |2024-06-18
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |NEW

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Less invalid:

__attribute__((simd)) int a()
{
  int *b = __builtin_malloc(6 * sizeof (int));
  __transaction_atomic { b[5] = 3; }
  return b[5];
}

Reply via email to