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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr93953.c
blob
bf85c146cd9eae41bb014b5ea4c426f3f536bc62
1
/* PR tree-optimization/93953 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 --param=ggc-min-expand=0 --param=ggc-min-heapsize=0" } */
4
5
int
*
b
,
c
,
e
;
6
float
d
,
g
,
f
;
7
8
void
9
foo
(
int
l
)
10
{
11
for
(;
l
; ++
l
)
12
{
13
float
a
=
g
>
l
;
14
d
+=
a
*
b
[
4
* (
l
+
c
*
e
)];
15
f
+=
a
*
b
[
4
* (
l
+
c
*
e
) +
1
];
16
}
17
}