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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
asan
/
pr78270-2.c
blob
72195b33e43b6c9345a84ced3d2fdf6256a5a71c
1
/* PR sanitizer/78270 */
2
/* { dg-do compile } */
3
/* { dg-additional-options "-Wno-switch-unreachable" } */
4
5
int
a
;
6
void
7
fn1
()
8
{
9
switch
(
a
)
10
{
11
char
b
;
12
case
8
:
13
&
b
;
14
switch
(
0
)
15
;
16
}
17
}
18