summaryrefslogtreecommitdiffstats
path: root/trunk/testsuite/shuffle2.c
blob: ed1af216c458c973482d2977fb647ff72e5b1acc (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
25
26
27
28
29
#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);
}

#ifdef __arm__
asm (".section nonalloced,\"aw\",%nobits\n\t"
     ".globl testzero\n\t"
     "testzero: .skip 16384\n\t"
     ".previous");
#else
asm (".section nonalloced,\"aw\",@nobits\n\t"
     ".globl testzero\n\t"
     "testzero: .skip 16384\n\t"
     ".previous");
#endif