OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [noreturn-7.c] - Rev 823

Go to most recent revision | Compare with Previous | Blame | View Log

/* PR optimization/13394 */
/* Origin: Carlo Wood <carlo@gcc.gnu.org> */
 
/* Verify that a bogus "function does return" warning is not issued
   in presence of tail recursion within a noreturn function.  */
 
/* { dg-do compile } */
/* { dg-options "-O2 -Wreturn-type -Wmissing-noreturn" } */
 
 
void f(void) __attribute__ ((__noreturn__));
void _exit(int status) __attribute__ ((__noreturn__));
 
int z = 0;
 
void g()
{             /* { dg-warning "possible candidate" } */
  if (++z > 10)
    _exit(0);
  g();
}
 
void f()
{
  if (++z > 10)
    _exit(0);
  f();
}             /* { dg-bogus "does return" } */
 
int h()
{             /* { dg-warning "possible candidate" } */
  if (++z > 10)
    _exit(0);
  return h();
}             /* { dg-bogus "end of non-void function" } */
 
int k()
{             /* { dg-warning "possible candidate" } */
  if (++z > 10)
    _exit(0);
  k();
}             /* { dg-warning "control reaches" } */
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.