1 /* Verify that we can look up tm clone of transaction_callable
2 and transaction_pure. */
9 int __attribute__((transaction_pure
)) pure(int i
)
14 int __attribute__((transaction_callable
)) callable(void)
21 if (_ITM_getTMCloneSafe (&pure
) != &pure
)
24 if (_ITM_getTMCloneSafe (&callable
) == NULL
)