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++.dg
/
ext
/
vla11.C
blob
e733f481f3e32556bd55881c2f6280787b072eb0
1
// Test that auto works with VLAs.
2
// { dg-do compile { target c++11 } }
3
// { dg-options "-Wno-vla" }
4
5
void bar(int n)
6
{
7
float loc2[n];
8
auto&& range = loc2;
9
}