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
/
pr83867.c
blob
aab5bb7378ea4c23a33a3ff2ea151e357f87bcd9
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O -ftrapv" } */
3
4
int
5
k5
(
int
u5
,
int
aw
)
6
{
7
int
v6
;
8
9
while
(
u5
<
1
)
10
{
11
while
(
v6
<
4
)
12
++
v6
;
13
14
v6
=
0
;
15
aw
+=
u5
>
0
;
16
++
u5
;
17
}
18
19
return
aw
;
20
}