aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ubsan/pr83987-2.C
blob: a70b7b2850bbfbe3f9898803ab38f058a00dbdf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// PR sanitizer/83987
// { dg-do compile { target fopenmp } }
// { dg-options "-fopenmp -fsanitize=vptr" }

struct A
{
  int i;
};

struct B : virtual A
{
  void foo();
};

void B::foo()
{
#pragma omp parallel
  {
  #pragma omp sections lastprivate (i)
    {
      i = 0;
    }
  }
}