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
builtin-has-attribute-4.c: Skip on 32-bit hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr88031.c
blob
2c1d1c1391d713a2e34180dcc2f2529d5cfbe137
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
int
a
[
512
];
5
int
b
;
6
void
d
()
7
{
8
unsigned char
c
;
9
for
(;
b
;
b
++) {
10
c
=
1
;
11
for
(;
c
;
c
<<=
1
) {
12
a
[
b
] <<=
8
;
13
if
(
b
&
c
)
14
a
[
b
] =
1
;
15
}
16
}
17
}