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
testsuite: Skip analyzer tests on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
ice-pr112889.c
blob
e90a53e79baf5c358c3813eaf08dc295de204f7e
1
typedef
unsigned char
__u8
;
2
struct
sk_buff
3
{
4
unsigned char
*
data
;
5
};
6
struct
cpl_pass_accept_req
7
{
8
__u8
:
6
;
9
__u8 sack
:
1
;
10
};
11
void
build_cpl_pass_accept_req
(
struct
sk_buff
*
skb
)
12
{
13
struct
cpl_pass_accept_req
*
req
;
14
skb
->
data
-=
sizeof
(*
req
);
15
req
= (
struct
cpl_pass_accept_req
*)
skb
->
data
;
16
req
->
sack
=
1
;
17
}