mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
(mwelinder@gmail.com). Announce bug fix. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12359
17 lines
223 B
C
17 lines
223 B
C
#include <stdio.h>
|
|
|
|
typedef struct {
|
|
unsigned int stuff : 21;
|
|
signed int rotation : 10;
|
|
} Oink;
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
volatile Oink r;
|
|
|
|
r.rotation = 45;
|
|
fprintf (stderr, "%d\n", r.rotation);
|
|
return 0;
|
|
}
|