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
/
vect
/
bb-slp-pr101756.c
blob
de7f1806926919896634aa9da4d336da43ad23d8
1
/* { dg-do compile } */
2
/* SIMD support can emit additional diagnostics. */
3
/* { dg-additional-options "-w" } */
4
5
__attribute__
((
simd
))
int
6
tq
(
long int
ea
,
int
of
,
int
kk
)
7
{
8
int
bc
;
9
10
for
(
bc
=
0
;
bc
<
2
; ++
bc
)
11
{
12
++
ea
;
13
of
|= !!
kk
< !!
ea
;
14
}
15
16
return
of
;
17
}