1/* { dg-do compile } */
2/* { dg-options "-fgnu-tm -fdump-ipa-tmipa" } */
3
4/* Test that indirect calls set the irrevocable bit.  */
5
6void (*indirect)(void);
7
8void
9foo(){
10    __transaction_relaxed {
11      (*indirect)();
12    }
13}
14
15/* { dg-final { scan-ipa-dump-times "GTMA_MAY_ENTER_IRREVOCABLE" 1 "tmipa" } } */
16/* { dg-final { cleanup-ipa-dump "tmipa" } } */
17