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
/
pr115537.c
blob
9f7347a5f2adf03dadf428cc1cfab46c3f930466
1
/* { dg-do compile } */
2
/* { dg-additional-options "-mcpu=neoverse-v1" { target aarch64*-*-* } } */
3
4
char
*
a
;
5
int
b
;
6
void
c
()
7
{
8
int
d
=
0
,
e
=
0
,
f
;
9
for
(;
f
; ++
f
)
10
if
(
a
[
f
] ==
5
)
11
;
12
else if
(
a
[
f
])
13
e
=
1
;
14
else
15
d
=
1
;
16
if
(
d
)
17
if
(
e
)
18
b
=
0
;
19
}