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
/
960326-1.c
blob
f201373702257e14bbc9a57af3e9e37ca341fef8
1
struct
s
2
{
3
int
a
;
4
int
b
;
5
short
c
;
6
int
d
[
3
];
7
};
8
9
struct
s s
= { .
b
=
3
, .
d
= {
2
,
0
,
0
} };
10
11
main
()
12
{
13
if
(
s
.
b
!=
3
)
14
abort
();
15
exit
(
0
);
16
}