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
PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20080924_0.C
blob
b1e381351bb4ee230c5b04c0e0f31a1ca274284a
1
// { dg-lto-do assemble }
2
// { dg-lto-options {{-O2 -flto -fno-strict-aliasing}} }
3
4
namespace ns
5
{
6
template <class> class hash_set { };
7
}
8
9
struct Foo
10
{
11
long long f1, f2, f3;
12
};
13
14
void func(ns::hash_set<int>) {
15
Foo foo = { 0, 0, 0 };
16
}