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