URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [tm/] [pr51696.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fgnu-tm" } */ struct list { void (*compare)(); } *listPtr; static void (*compare)(); __attribute__((transaction_safe)) static void func () { listPtr->compare(); /* { dg-error "unsafe indirect function call" } */ compare(); /* { dg-error "unsafe function call" } */ }