aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr100373.c
blob: d4cd52a95deb03a61f511abb70f52aad16edf172 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O2 -fcompare-debug" } */

int a;
_Thread_local int b;
void c()
{
  long d = b;
  a = 0;
  b = 0;
}