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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
crash12.C
blob
73bbb8bb6d6cc692105e1fefb87a0cd3f7e28a08
1
// { dg-do assemble }
2
// { dg-options "" }
3
// Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
4
5
template<typename T>
6
struct S
7
{
8
void f() {}
9
};
10
11
int main()
12
{
13
S<int> s;
14
int len = 50;
15
char array[len];
16
s.f();
17
}