summaryrefslogtreecommitdiffstats
path: root/testsuite/shuffle2.c
blob: b7cbd1a461b4f5603fbd5c3cf6ea7eaafec988b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "reloc1.h"
#include <stdlib.h>

extern char testzero[16384];

int main()
{
  int i;
  if (foo.a != 1 || foo.b != &foo || foo.c != &bar || bar != 26)
    abort ();
  if (f1 () != 11 || f2 () != 12)
    abort ();
  for (i = 0; i < 16384; ++i)
    if (testzero[i])
      abort ();
  exit (0);
}

asm (".section nonalloced,\"aw\",@nobits; testzero: .skip 16384");