blob: 6da19d48a927593ffac52beb023fd133eeb2ae47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* PR tree-optimization/78691 */
/* { dg-options "-Os" } */
int *b;
int fn1() {
char *c;
int a;
for (;;)
switch (*b) {
case 'c':
while (--a > 0)
*c++ = ' ';
c++;
if (a)
a = sizeof(void *);
}
}
|