* config/sparc/driver-sparc.c (cpu_names): Add SPARC-T5 entry.
[official-gcc.git] / gcc / testsuite / g++.dg / tm / wrap-2.C
blobe2948c8c575ff348e8333d2dbafae55c7e4c9e76
1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm -ftrack-macro-expansion=0" } */
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 "not declared in this scope\|not an identifier" } */
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" } */