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
Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr57741-1.c
blob
ec8c41a0487de360bcad620b39406122ca59adde
1
/* PR tree-optimization/57741 */
2
/* { dg-do compile } */
3
4
void
5
foo
(
float
*
p
,
float
*
q
,
float
x
)
6
{
7
int
i
;
8
float
f
=
1.0
f
,
g
=
2.0
f
;
9
for
(
i
=
0
;
i
<
1024
;
i
++)
10
{
11
*
p
++ =
f
;
12
f
+=
x
;
13
}
14
for
(
i
=
0
;
i
<
1024
;
i
++)
15
{
16
*
q
++ =
g
;
17
g
+=
0.5
f
;
18
}
19
}
20