Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tm / indirect-2.c
blobdd7168f0519476af2533ec81ce0e067bd12feb6b
1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm" } */
4 void __attribute__((transaction_safe))
5 foo(void);
7 void __attribute__((transaction_safe))
8 set_fn(void)
10 void __attribute__((transaction_safe)) (*fn)(void);
11 fn = foo;
12 fn();
15 /* { dg-final { scan-assembler "_ITM_getTMCloneSafe" } } */