URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [20090121-1.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-do compile }// { dg-require-effective-target lto }// { dg-options "-flto -Wuninitialized -O2" }class A{private:int y;public:A () { int x; y = x + 1; } /* { dg-warning "'x' is used uninitialized in this function" } */int get_y () { return y; }};int foo(){A a;return a.get_y ();}
