blob: 84aa7d35cac4aeebf702e14366740e6b9890fedc [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001#include "tst-tls10.h"
2
3#define CHECK(N, S) \
4 p = &a##N; \
5 if (p->a != S || p->b != S + 1 || p->c != S + 2) \
6 abort ()
7
8int
9main (void)
10{
11#ifdef USE_TLS__THREAD
12 struct A *p;
13 check1 ();
14 CHECK (1, 4);
15 CHECK (2, 7);
16#endif
17 exit (0);
18}