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 middle-end/77357 - strlen of constant strings not folded
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
931110-1.c
blob
5b33b269a2d631ea21d76ecc1383c0a41ed1ddfa
1
typedef
struct
2
{
3
short
f
:
3
,
g
:
3
,
h
:
10
;
4
}
small
;
5
6
struct
7
{
8
int
i
;
9
small s
[
10
];
10
}
x
;
11
12
main
()
13
{
14
int
i
;
15
for
(
i
=
0
;
i
<
10
;
i
++)
16
x
.
s
[
i
].
f
=
0
;
17
exit
(
0
);
18
}