repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Enable sys_adjtimex() on arm-linux. Fixes #412408.
[valgrind.git]
/
memcheck
/
tests
/
bug287260.c
blob
79574f86d308128d29d979605d3acb8fab4f83a6
1
#include <stdio.h>
2
3
typedef
struct
{
4
unsigned int
stuff
:
21
;
5
signed int
rotation
:
10
;
6
}
Oink
;
7
8
int
9
main
(
int
argc
,
char
**
argv
)
10
{
11
volatile
Oink r
;
12
13
r
.
rotation
=
45
;
14
fprintf
(
stderr
,
"%d
\n
"
,
r
.
rotation
);
15
return
0
;
16
}