blob: acbe16a40ab5323c92c09371923aba8258ada5f9 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fgnu-tm -fdump-ipa-tmipa" } */
/* Test that irrevocability gets set for the obvious case. */
int global;
int george;
extern void crap() __attribute__((transaction_unsafe));
void
foo(){
__transaction_relaxed {
global++;
crap();
george++;
}
}
/* { dg-final { scan-ipa-dump-times "GTMA_MAY_ENTER_IRREVOCABLE" 1 "tmipa" } } */