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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20080506-2.c] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 297 jeremybenn
/* PR middle-end/36013 */
2
 
3
extern void abort (void);
4
 
5
void __attribute__((noinline))
6
foo (int **__restrict p, int **__restrict q)
7
{
8
  *p[0] = 1;
9
  *q[0] = 2;
10
  if (*p[0] != 2)
11
    abort ();
12
}
13
 
14
int
15
main (void)
16
{
17
  int a;
18
  int *p1 = &a, *p2 = &a;
19
  foo (&p1, &p2);
20
  return 0;
21
}

powered by: WebSVN 2.1.0

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