aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/tm/pr51696.c
blob: 02ee3f517c002283d3266525d78a61e1076804c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { 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" } */
}