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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wuninitialized-1.C] - Rev 715

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

/* { dg-options "-O2 -Wuninitialized" } */

struct Empty { Empty() {} }; /* { dg-bogus "uninitialized" } */
struct Other {
    Other(const Empty& e_) : e(e_) {}
    Empty e;
};
void bar(Other&);
void foo()
{
  Empty e;
  Other o(e);
  bar(o);
}

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.