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
/
pr42215.c
blob
e5a75bd3055caa9cf39d4da2ee3a65a6ec0878e3
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftree-loop-distribution" } */
3
4
extern
int
A
[];
5
extern
int
B
[];
6
7
void
f
(
int
i
)
8
{
9
while
(
i
-- >
0
) {
10
A
[
i
] =
0
;
11
B
[
i
] =
0
;
12
}
13
}