repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
gcc-torture-execute-packed-2.c
blob
bd9a111d6206bc975d4a6d0046d1f4f05f660ae2
1
/*
2
packed-2.c from the execute part of the gcc torture tests.
3
*/
4
5
#include <testfwk.h>
6
7
typedef
struct
s
{
8
unsigned short
a
;
9
unsigned long
b
;
10
}
s
;
11
12
s t
;
13
14
void
15
testTortureExecute
(
void
)
16
{
17
t
.
b
=
0
;
18
return
;
19
}