URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20040823-1.c] - Rev 688
Compare with Previous | Blame | View Log
/* Ensure that we create VUSE operands also for noreturn functions. */ #include <stdlib.h> #include <string.h> int *pwarn; void bla (void) __attribute__ ((noreturn)); void bla (void) { if (!*pwarn) abort (); exit (0); } int main (void) { int warn; memset (&warn, 0, sizeof (warn)); pwarn = &warn; warn = 1; bla (); }