aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/bitfields/bitfields.c
blob: 868d7483416010c6e3ce8b7c7d63377059be263c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

struct fields {
  unsigned f0 : 3;
  unsigned f1 : 5;
  signed f2 : 3;
};

int get_f1(struct fields x) {
  return x.f1;
}

int get_f2(struct fields x) {
  return x.f2;
}

int main() {
  struct fields x = {1, 2, -1};
  printf("%d %d\n", get_f1(x), get_f2(x));
}