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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83512.c
blob
d86e57befc7e9a4ac39b664ec8e5c2a7f676c243
1
/* PR rtl-optimization/83512 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -freorder-blocks-algorithm=simple" } */
4
5
int
a
;
6
7
void
8
foo
(
int
*
x
)
9
{
10
for
(;;)
11
{
12
for
(*
x
=
0
; *
x
<
1
; *
x
++)
13
;
14
++
a
;
15
}
16
}