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

static struct A local = { 77, &local, &bar + 4 };
int vbss[16384] __attribute__((aligned (4096)));
int vdata __attribute__((aligned (4096))) = 5;

asm (".text; .balign 4096; vtext:; .previous");

int main()
{
  if (foo.a != 1 || foo.b != &foo || foo.c != &bar || bar != 26)
    abort ();
  if (f1 () != 11 || f2 () != 12)
    abort ();
  local.c -= 4;
  if (local.a != 77 || local.b != &local || local.c != &bar)
    abort ();
  exit (vbss[31] + vdata - 5);
}