summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/pr35802.c
blob: 9ecc4d06ea6fb9f7f6cc6c97c2bac5ce6054d3fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-options "-O2 -march=74kc -mgp32" } */
__thread int x __attribute__((tls_model("initial-exec")));
__thread int y __attribute__((tls_model("initial-exec")));

int bar (void);

NOMIPS16 void
foo (int n)
{
  if (n > 5)
    {
      y = 0;
      do
	x += bar ();
      while (n--);
    }
}