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
2013-05-29 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr51014.C
blob
1e5bb9f0f14b09358255acf391e0916b2dda6b7d
1
// PR rtl-optimization/51014
2
// { dg-do compile }
3
// { dg-options "-O2 -funroll-loops -fcompare-debug" }
4
5
struct S
6
{
7
~S() { delete s; }
8
int *s;
9
};
10
11
void
12
f (S *x, S *y)
13
{
14
for (; x != y; ++x)
15
x->~S();
16
}