URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr38645.c] - Rev 758
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-optimized" } */ int foo() { volatile int a[1]; int i, *p = (int*)a; a[0] = 1; for (i = 0; i < 1; ++i) if (p[i]) return -1; return 0; } /* { dg-final { scan-tree-dump "a.0. ={v} 1;" "optimized" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */
Go to most recent revision | Compare with Previous | Blame | View Log