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
/
pr94283.c
blob
ac162d6ac7bc4cb6e50f62b96dec2447c4f0a45c
1
/* PR debug/94283 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -fno-tree-dce -fcompare-debug" } */
4
5
void
6
foo
(
int
*
n
)
7
{
8
for
(
int
i
=
0
;
i
<
32
;
i
++)
9
{
10
int
x
=
0
;
11
x
++;
12
if
(
i
&
4
)
13
x
++;
14
x
++;
15
}
16
}