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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr80500.c
blob
ae3ac0184be1044a48748bf68083cb1dfc16c56b
1
/* PR rtl-optimization/80500 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -funroll-loops -ftree-loop-if-convert -fvariable-expansion-in-unroller" } */
4
5
signed char
v
;
6
7
void
8
foo
(
int
x
)
9
{
10
while
(
x
!=
0
)
11
{
12
v
= (
x
>=
0
) +
1
;
13
++
x
;
14
}
15
}