repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr118320.C
blob
228d79860b5dc43102f56cdb16cedce5d141e449
1
// { dg-additional-options "-fno-tree-sra" } */
2
3
struct T{
4
long f[2];
5
};
6
void f1(int);
7
void g(T&);
8
void f1()
9
{
10
T a;
11
a.~T(); // To force the clobber
12
a.f[1] = 1;
13
T b = a;
14
g(b);
15
}