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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ubsan
/
pr59331.C
blob
1bb3666efbfd0d23d7ab08a7c962713df3a54cf3
1
/* { dg-do compile } */
2
/* { dg-options "-fsanitize=vla-bound -Wall -Wno-unused-variable" } */
3
4
void foo(int i)
5
{
6
/* Don't warn here with "value computed is not used". */
7
char a[i];
8
}