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
/
pr108314.c
blob
07260e069151718c49bf29cedb8ca8b79e5c99c4
1
/* { dg-do compile } */
2
/* { dg-additional-options "-march=armv9-a" { target aarch64-*-* } } */
3
4
int
x
,
y
,
z
;
5
6
void
f
(
void
)
7
{
8
int
t
=
4
;
9
for
(;
x
;
x
++)
10
{
11
if
(
y
)
12
continue
;
13
t
=
0
;
14
}
15
z
=
t
;
16
}