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
PR target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr50161.c
blob
b76ff9a0c72f8a77e7a385fbd57654cedc4936a7
1
/* PR middle-end/50161 */
2
/* { dg-do run } */
3
/* { dg-options "-O2 -fno-tree-ter -funroll-loops" } */
4
5
extern
void
abort
(
void
);
6
7
int
8
main
()
9
{
10
unsigned
i
;
11
unsigned long
a
[
16
];
12
13
for
(
i
=
0
;
i
<
16
;
i
++)
14
a
[
i
] = ~
0UL
;
15
16
for
(
i
=
0
;
i
<
16
;
i
++)
17
if
(
__builtin_popcountl
(
a
[
i
]) !=
sizeof
(
a
[
i
]) *
8
)
18
abort
();
19
20
return
0
;
21
}