summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tm/props-2.c
blob: 9c97e3b83e7d3620803e17d4c965818e31148457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-fgnu-tm -fdump-ipa-tmipa" } */

/* Test that irrevocability gets set for the obvious case.  */

int global;
int george;

extern crap() __attribute__((transaction_unsafe));

foo(){
    __transaction_relaxed {
        global++;
        crap();
        george++;
    }
}

/* { dg-final { scan-ipa-dump-times "GTMA_MAY_ENTER_IRREVOCABLE" 1 "tmipa" } } */
/* { dg-final { cleanup-ipa-dump "tmipa" } } */