repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
scev-1.c
blob
b959fa17b2c3f2a76942192fb31d71a42e6a2ad8
1
/* PR tree-optimization/19899 */
2
/* Decrementing a floating-point variable in a loop caused an ICE. */
3
4
/* { dg-do run } */
5
/* { dg-options "-O -ftree-vectorize" } */
6
7
extern
void
abort
(
void
);
8
9
int
main
()
10
{
11
float
i
=
1
;
12
13
while
(
i
>=
0
)
14
--
i
;
15
16
if
(
i
!= -
1
)
17
abort
();
18
return
0
;
19
}