1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* { dg-do compile } */ /* { dg-options "-fgnu-tm -O0" } */ /* { dg-do compile { target aarch64*-*-* } } */ typedef int __attribute__ ((vector_size (16))) vectype; vectype v; void foo (int c) { vectype *p = __builtin_malloc (sizeof (vectype)); __transaction_atomic { *p = v; if (c) __transaction_cancel; } }