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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
struct-ini-1.c
blob
ab2d178a7515017d51605c3f867997f93849b1a2
1
struct
S
2
{
3
char
f1
;
4
int
f2
[
2
];
5
};
6
7
struct
S object
= {
'X'
,
8
,
9
};
8
9
main
()
10
{
11
if
(
object
.
f1
!=
'X'
||
object
.
f2
[
0
] !=
8
||
object
.
f2
[
1
] !=
9
)
12
abort
();
13
exit
(
0
);
14
}
15