URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [fold-alloca-1.c] - Rev 455
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fdump-tree-useless" } */ void *alloca (__SIZE_TYPE__); void link_error (); int main (int argc, char *argv[]) { char *foo; if ((foo = alloca(argc)) == 0) link_error (); return 0; } /* { dg-final { scan-tree-dump-times "link_error" 0 "useless" } } */ /* { dg-final { cleanup-tree-dump "useless" } } */
Go to most recent revision | Compare with Previous | Blame | View Log