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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr107326.c
blob
333a515e7410a5b257a9f225b56b14b619af3118
1
/* PR107326 */
2
/* { dg-do compile } */
3
struct
Gsymtab
{
4
unsigned int
:
8
;
5
unsigned int
visited_somewhere
:
1
;
6
};
7
8
extern
struct
Gsymtab glob_symtab
[];
9
10
int
11
visit_children
(
int
i
)
12
{
13
int
numvisited
=
0
;
14
15
while
(
i
<
1
)
16
{
17
if
(
glob_symtab
[
i
].
visited_somewhere
)
18
++
numvisited
;
19
20
++
i
;
21
}
22
23
return
numvisited
;
24
}