1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm -O1" } */
3 
asmfunc()4 static inline void asmfunc()
5 {
6 __asm__("");
7 }
8 
9 __attribute__((transaction_callable))
push()10 void push()
11 {
12         asmfunc();
13 }
14