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
/
pr109025.c
blob
13fb0ce4ba98f634a5dae0d44591beddc73ffa5a
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O3" } */
3
4
int
func_4
(
int
t
,
int
b
)
5
{
6
for
(
int
tt1
=
0
;
tt1
<
128
;
tt1
++)
7
{
8
for
(
int
tt
=
0
;
tt
<
128
;
tt
++)
9
if
(
b
)
10
t
|=
3
;
11
t
|=
3
;
12
}
13
return
t
;
14
}