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
/
pr81661.c
blob
d8d27304ddb848fa90a0d3666e70a36444b19433
1
/* PR tree-optimization/81661 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -ftrapv" } */
4
5
int
a
,
b
,
c
;
6
7
void
8
foo
(
void
)
9
{
10
while
(
a
+
c
>
b
)
11
a
--;
12
}