URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr43317.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -fipa-struct-reorg -fwhole-program -fipa-type-escape -g" } */ extern void *malloc(__SIZE_TYPE__); struct S { int i; }; int main(int argc, char *argv[]) { int i = argc; struct S *p = malloc(sizeof (struct S)); return p[i].i; }
Go to most recent revision | Compare with Previous | Blame | View Log