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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
bitf.c
blob
5b0aefc83d48047c1337cf1329ced4975aae8496
1
#define int unsigned
2
3
struct
foo
4
{
5
int
aa
:
1
;
6
int
a
:
9
;
7
int
c
:
16
;
8
int
d
:
6
;
9
};
10
11
12
int
13
foo
(
a
,
b
)
14
struct
foo a
;
15
{
16
return
a
.
d
==
0
;
17
}