* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / c-c++-common / tm / ipa-1.c
blob2f9972b299a28c2b11bc2af1040dd7bc78ea9f16
1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm -O -fdump-ipa-tmipa" } */
4 int val, george;
6 extern void func();
8 int set_remove(void)
10 int result = 8;
11 __transaction_atomic {
12 result = george;
13 if (val)
14 goto out;
16 out:
17 func();
18 return result;
22 /* { dg-final { scan-ipa-dump-not "getTMCloneOrIrrevocable" "tmipa" } } */