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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr85286.c
blob
320ed6b7e79cb717a13592d90e31e485ef52bd17
1
/* PR tree-optimization/45241 */
2
/* { dg-do compile } */
3
/* { dg-additional-options "--param scev-max-expr-complexity=0" } */
4
5
int
6
foo
(
short
x
)
7
{
8
short
i
,
y
;
9
int
sum
;
10
11
for
(
i
=
0
;
i
<
x
;
i
++)
12
y
=
x
*
i
;
13
14
for
(
i
=
x
;
i
>
0
;
i
--)
15
sum
+=
y
;
16
17
return
sum
;
18
}
19