repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20051012-1.c
blob
f12f42913cc2f86fbf57cfbab118bb1d04a0788b
1
extern
void
abort
(
void
);
2
3
struct
type
4
{
5
int
*
a
;
6
7
int
b
:
16
;
8
unsigned int
p
:
9
;
9
}
t
;
10
11
unsigned int
12
foo
()
13
{
14
return
t
.
p
;
15
}
16
17
int
18
main
(
void
)
19
{
20
t
.
p
=
8
;
21
if
(
foo
(
t
) !=
8
)
22
abort
();
23
return
0
;
24
}