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
/
torture
/
pr92461.c
blob
1d059070682cc37838957252ca8c109fb3d28b1a
1
/* { dg-do compile } */
2
/* { dg-additional-options "-ftree-vectorize" } */
3
4
short int
zb
;
5
6
void
7
gs
(
void
)
8
{
9
while
(
zb
<
1
)
10
{
11
int
at
;
12
13
zb
%=
1
;
14
15
for
(
at
=
0
;
at
<
56
; ++
at
)
16
zb
+=
zb
;
17
18
++
zb
;
19
}
20
}