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
/
pr84321.c
blob
8f8186b58f217de5b586895d0e925d9c20eb623d
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -fwrapv" } */
3
4
int
c
;
5
6
void
7
foo
(
int
*
a
,
int
b
)
8
{
9
int
e
;
10
if
(
b
==
1
)
11
return
;
12
for
(
e
=
0
;
e
< (
b
& ~
7
);
e
+=
8
)
13
;
14
for
(++
e
;
e
<
b
;)
15
c
=
a
[
e
];
16
}