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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr33648.c
blob
f5da55cd47cee2221bc3b0d9a8a480744e3b2203
1
/* PR rtl-optimization/33648 */
2
/* { dg-do compile } */
3
/* { dg-require-effective-target freorder } */
4
/* { dg-options "-O2 -fmodulo-sched -freorder-blocks-and-partition" } */
5
6
unsigned
res
;
7
8
void
9
foo
(
unsigned
code
,
int
len
)
10
{
11
int
i
;
12
for
(
i
=
0
;
i
<
len
;
i
++)
13
res
|=
code
&
1
;
14
}