URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-static3.C] - Rev 749
Go to most recent revision | Compare with Previous | Blame | View Log
// Test for constant initialization of class with vtable// { dg-options "-std=c++0x -save-temps" }// { dg-final { scan-assembler-not "static_initialization" } }// { dg-final cleanup-saved-temps }// { dg-do run }int r = 1;// implicit default constructor for A and B is constexprstruct A { virtual void f() {} };struct B: A { virtual void f() { r = 0; } };B b;int main(){b.f();return r;}
Go to most recent revision | Compare with Previous | Blame | View Log
