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 inline-asm/84742
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
packed-1.c
blob
9b226aeab9b49dab623b75945f2270914a0f8f39
1
short
x1
=
17
;
2
3
struct
4
{
5
short
i
__attribute__
((
packed
));
6
}
t
;
7
8
f
()
9
{
10
t
.
i
=
x1
;
11
if
(
t
.
i
!=
17
)
12
abort
();
13
}
14
15
main
()
16
{
17
f
();
18
exit
(
0
);
19
}