view gcc/testsuite/g++.dg/gomp/tls-wrap2.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// If we can't see the definition at the use site, but it's in this translation
// unit, we build a wrapper but don't bother with an init function.

// { dg-require-effective-target tls }
// { dg-final { scan-assembler "_ZTW1i" } }
// { dg-final { scan-assembler-not "_ZTH1i" } }

extern int i;
#pragma omp threadprivate (i)

int main()
{
  return i - 42;
}

int i = 42;