aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tsan/atomic-fence.c
blob: 013720c2969ac57d94b477933ddfe49569fe6cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR sanitizer/97868 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=thread" } */

int
main ()
{
  __atomic_thread_fence (__ATOMIC_RELAXED); /* { dg-warning ".atomic_thread_fence. is not supported with .-fsanitize=thread." } */
  return 0;
}