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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr98272.c
blob
126a61642e4da0d66fe1ddbb7a4eefc0337cb7a1
1
/* PR tree-optimization/98272 */
2
/* Reported by Zdenek Sojka <zsojka@seznam.cz> */
3
4
/* { dg-do compile } */
5
/* { dg-options "-O -fno-tree-forwprop" } */
6
7
void
bar
(
void
);
8
9
void
10
foo
(
unsigned char
uc
)
11
{
12
if
(
uc
>=
5
)
13
return
;
14
15
switch
(
uc
)
16
{
17
case
0
:
18
case
2
:
19
case
4
:
20
bar
();
21
}
22
}