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
/
vect-bool-1.c
blob
ca1456b4d8e9bfcfb97a8ae28bcb3c0afeaa83b3
1
/* { dg-do compile } */
2
3
int
a
[
64
];
4
long
b
[
64
];
5
6
void
foo
(
void
)
7
{
8
for
(
int
i
=
0
;
i
<
64
; ++
i
)
9
{
10
_Bool x
=
a
[
i
] <
10
;
11
a
[
i
] =
x
;
12
b
[
i
] =
x
;
13
}
14
}