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
/
pr94114.c
blob
8d6d0eb5c2a49d93b26d9f6b270c568398d79d02
1
/* PR tree-optimization/94114 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -ftree-loop-distribute-patterns -ftrapv" } */
4
5
void
6
foo
(
int
*
x
,
int
*
y
,
int
*
z
,
long int
w
)
7
{
8
while
(
y
+
w
>
z
)
9
{
10
x
[
w
] =
0
;
11
--
w
;
12
}
13
}