Document gcov-io (PR gcov-profile/84735).
[official-gcc.git] / gcc / testsuite / gcc.dg / tm / wrap-2.c
blob372d666be7f4665846a0e79cee63f2b7e2979770
1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm" } */
4 #define W(X) __attribute__((transaction_wrap(X)))
5 void f1(void);
6 void f2(int);
7 int i3;
8 int f7(void);
10 void g1(void) W(f1);
11 void g2(void) W(f2); /* { dg-error "is not compatible" } */
12 void g3(void) W(i3); /* { dg-error "is not a function" } */
13 void g4(void) W(f4); /* { dg-error "undeclared" } */
14 void g5(void) W(1); /* { dg-error "not an identifier" } */
15 void g6(void) W("f1"); /* { dg-error "not an identifier" } */
16 void g7(void) W(f7); /* { dg-error "is not compatible" } */