repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
opt
/
placeholder1.C
blob
a1c984263daa0ece64a5b58966c6c42ae78528b2
1
// PR rtl-optimization/15159
2
// { dg-options "-O2" }
3
struct S { S (); };
4
struct P { P (S *); };
5
void foo (const P &);
6
void bar ()
7
{
8
P p = new S;
9
foo (p);
10
}