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

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

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