OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20020920-1.c] - Blame information for rev 715

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 688 jeremybenn
extern void abort (void);
2
extern void exit (int);
3
 
4
struct B
5
{
6
  int x;
7
  int y;
8
};
9
 
10
struct A
11
{
12
  int z;
13
  struct B b;
14
};
15
 
16
struct A
17
f ()
18
{
19
  struct B b = { 0, 1 };
20
  struct A a = { 2, b };
21
  return a;
22
}
23
 
24
int
25
main (void)
26
{
27
  struct A a = f ();
28
  if (a.z != 2 || a.b.x != 0 || a.b.y != 1)
29
    abort ();
30
  exit (0);
31
}

powered by: WebSVN 2.1.0

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