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/84740
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
asan
/
pr81186.c
blob
7f0f672ca40a3394226f79746385535c18478b27
1
/* PR sanitizer/81186 */
2
/* { dg-do run } */
3
4
int
5
main
()
6
{
7
__label__ l
;
8
void
f
()
9
{
10
int
a
[
123
];
11
12
goto
l
;
13
}
14
15
f
();
16
l
:
17
return
0
;
18
}