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
/
pr101505.c
blob
e2b8945a5ccf7c535df5c8bfa57df2ecc37fa0dd
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O1" } */
3
4
int
n2
;
5
6
__attribute__
((
simd
))
char
7
w7
(
void
)
8
{
9
short int
xb
=
n2
;
10
int
qp
;
11
12
for
(
qp
=
0
;
qp
<
2
; ++
qp
)
13
xb
=
xb
<
1
;
14
15
return
xb
;
16
}