OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [stackalign/] [nested-1.c] - Blame information for rev 298

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* { dg-do run } */
2
 
3
#include "check.h"
4
 
5
#ifndef ALIGNMENT
6
#define ALIGNMENT       64
7
#endif
8
 
9
typedef int aligned __attribute__((aligned(ALIGNMENT)));
10
 
11
int global;
12
 
13
void
14
foo (void)
15
{
16
  aligned j;
17
 
18
  void bar ()
19
    {
20
      aligned i;
21
 
22
      if (check_int (&i,  __alignof__(i)) != i)
23
        abort ();
24
 
25
      if (check_int (&j,  __alignof__(j)) != j)
26
        abort ();
27
 
28
      j = -20;
29
    }
30
  bar ();
31
 
32
  if (j != -20)
33
    abort ();
34
 
35
  if (check_int (&j,  __alignof__(j)) != j)
36
    abort ();
37
}
38
 
39
int
40
main()
41
{
42
  foo ();
43
  return 0;
44
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.