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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [uninit-11.c] - Rev 315

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

/* Positive test for uninitialized variables.  */
/* { dg-do compile } */
/* { dg-options "-O -Wuninitialized" } */
 
int sink;
 
void f1(int parm)	/* { dg-bogus "uninitialized" "parameter" } */
{
  sink = parm;		/* { dg-bogus "uninitialized" "parameter" } */
}
 
void f2(void)
{
  int x;
  sink = x;		/* { dg-warning "is used" "unconditional" } */
}
 
void f3(int p)
{
  int x;		/* { dg-warning "may be used" "conditional" } */
  if (p)
    x = p;
  sink = x;
}
 
void f4(int p)
{
  int x;		/* { dg-bogus "uninitialized" "easy if" } */
  if (p)
    x = 1;
  else
    x = 2;
  sink = x;
}
 
void f5(void)
{
  int x, i;		/* { dg-bogus "uninitialized" "easy loop" } */
  for (i = 0; i < 10; ++i)
    x = 1;
  sink = x;
}
 

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.