repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr80463.C
blob
417eeaa5ddd81d26024f84401d0062e4848b2bcd
1
/* { dg-do compile { target powerpc*-*-* ia64-*-* i?86-*-* x86_64-*-* } } */
2
/* { dg-options "-g -fselective-scheduling2 -O2 -fvar-tracking-assignments -w" } */
3
4
int *a;
5
int b, c;
6
void
7
d ()
8
{
9
for (int e; c; e++)
10
switch (e)
11
{
12
case 0:
13
a[e] = 1;
14
case 1:
15
b = 2;
16
break;
17
default:
18
a[e] = 3;
19
}
20
}