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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr52129.c] - Blame information for rev 688

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 688 jeremybenn
/* PR target/52129 */
2
 
3
extern void abort (void);
4
struct S { void *p; unsigned int q; };
5
struct T { char a[64]; char b[64]; } t;
6
 
7
__attribute__((noinline, noclone)) int
8
foo (void *x, struct S s, void *y, void *z)
9
{
10
  if (x != &t.a[2] || s.p != &t.b[5] || s.q != 27 || y != &t.a[17] || z != &t.b[17])
11
    abort ();
12
  return 29;
13
}
14
 
15
__attribute__((noinline, noclone)) int
16
bar (void *x, void *y, void *z, struct S s, int t, struct T *u)
17
{
18
  return foo (x, s, &u->a[t], &u->b[t]);
19
}
20
 
21
int
22
main ()
23
{
24
  struct S s = { &t.b[5], 27 };
25
  if (bar (&t.a[2], (void *) 0, (void *) 0, s, 17, &t) != 29)
26
    abort ();
27
  return 0;
28
}

powered by: WebSVN 2.1.0

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