blob: c811840677628b3c0099c2db1c5a4ffc2d34845f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fgnu-tm" } */
__attribute__((transaction_unsafe))
void illegal();
static int a = 0;
void func()
{
__transaction_relaxed {
if( a == 0)
illegal();
}
}