URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [errno-1.c] - Rev 309
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2" } */ #include <errno.h> #include <stdlib.h> int main() { void *p; errno = 0; p = malloc (-1); if (errno != 0) do_not_optimize_away (); return 0; } /* { dg-final { scan-assembler "do_not_optimize_away" } } */
Go to most recent revision | Compare with Previous | Blame | View Log