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
Revert DECL_USER_ALIGN part of r241959
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr70026.c
blob
32f59e2d34f3cbb2a0a88ed8021d82c67091c88b
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
unsigned int
a
[
64
],
b
[
64
],
c
[
64
],
d
[
64
],
e
[
64
];
5
6
void
7
foo
()
8
{
9
int
i
;
10
for
(
i
=
0
;
i
<
64
;
i
++)
11
{
12
d
[
i
] =
a
[
i
];
13
e
[
i
] = ((
b
[
i
] <
e
[
i
]) != !
c
[
i
]) && !
a
[
i
];
14
}
15
}