URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr43317.c] - Rev 300
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