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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20040223-1.c] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
/* GCC was not warning about taking the address of paramaters or
/* GCC was not warning about taking the address of paramaters or
   fields of struct paramaters when returning them.  */
   fields of struct paramaters when returning them.  */
/* PR c/14156 */
/* PR c/14156 */
 
 
/* { dg-do compile  } */
/* { dg-do compile  } */
 
 
 
 
int * f( int a)
int * f( int a)
{
{
        return &a;/* { dg-warning "address" "" } */
        return &a;/* { dg-warning "address" "" } */
}
}
 
 
int * g()
int * g()
{
{
        int b = 0;
        int b = 0;
        return &b;/* { dg-warning "address" "" } */
        return &b;/* { dg-warning "address" "" } */
}
}
 
 
struct ll
struct ll
{
{
  int i;
  int i;
};
};
 
 
int *h(struct ll c)
int *h(struct ll c)
{
{
  return &c.i;/* { dg-warning "address" "" } */
  return &c.i;/* { dg-warning "address" "" } */
}
}
 
 
 
 
struct ll d;
struct ll d;
 
 
int *i()
int *i()
{
{
  return &d.i;/* { dg-bogus "address" "" } */
  return &d.i;/* { dg-bogus "address" "" } */
}
}
 
 
 
 
int *j(struct ll *c)
int *j(struct ll *c)
{
{
  return &c->i; /* { dg-bogus "address" "" } */
  return &c->i; /* { dg-bogus "address" "" } */
}
}
 
 

powered by: WebSVN 2.1.0

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