URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [fold-alloca-1.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fdump-tree-cfg" } */ 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 "cfg" } } */ /* { dg-final { cleanup-tree-dump "cfg" } } */
Go to most recent revision | Compare with Previous | Blame | View Log