repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-04-07 Charles Baylis <charles.baylis@linaro.org>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr55260-2.C
blob
43ed1e775a6ee9428c99266c7ea6c7e8a4c534f9
1
/* { dg-do compile } */
2
/* { dg-add-options bind_pic_locally } */
3
4
struct B
5
{
6
virtual void test_suite_finish ();
7
};
8
void
9
fn1 (B & p2)
10
{
11
fn1 (p2);
12
B & a = p2;
13
a.test_suite_finish ();
14
B b;
15
fn1 (b);
16
}