OSDN Git Service

* g++.dg/opt/pr6713.C: Add template instantiation.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / vt1.C
1 // Test whether vtable for S is not put into read-only section.
2 // { dg-do compile }
3 // { dg-options "-O2 -fpic -fno-rtti" }
4 // Origin: Jakub Jelinek <jakub@redhat.com>
5
6 struct S
7 {
8   virtual void vm (void) {};
9 } x;
10
11 // { dg-final { scan-assembler-not "section\[^\n\r\]*_ZTV1S\[^\n\r\]*\"\[^w\"\n\r\]*\"" } }