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
/
pr92371.c
blob
0c78d32f471db9847dff95054a856995224490e5
1
/* { dg-do compile } */
2
/* { dg-additional-options "-ftree-vectorize" } */
3
4
int
a
,
b
;
5
void
d
()
6
{
7
int
c
=
sizeof
(
int
);
8
for
(;
a
;
a
++)
9
c
*=
sizeof
(
int
);
10
c
*=
sizeof
(
int
);
11
b
=
c
;
12
}