URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [noreturn-4.c] - Rev 12
Compare with Previous | Blame | View Log
/* Check for "noreturn" warning in main. */ /* { dg-do compile } */ /* { dg-options "-O2 -Wmissing-noreturn -ffreestanding" } */ extern void exit (int) __attribute__ ((__noreturn__)); int main (void) { /* { dg-warning "warning: function might be possible candidate for attribute 'noreturn'" "warn for main" } */ exit (0); }