summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-size/size-5a.c
blob: 500678a96d1c76a89f198ac41d5dc8be1a2ba22f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>

__thread char bar[10];
__thread char foo[20] = { 1 } ;
extern int bar_size1 (void);
extern int bar_size2 (void);
extern int foo_size1 (void);
extern int foo_size2 (void);

int
main ()
{
  int size;
  
  size = bar_size1 ();
  if (bar[2] == 3 && size == sizeof (bar) && bar_size2 () == size)
    printf ("OK\n");

  size = foo_size1 ();
  if (foo[3] == 4 && size == sizeof (foo) && foo_size2 () == size)
    printf ("OK\n");

  return 0;
}