Skip to content
2004-03-07-BitfieldCrash.c 129 B
Newer Older
Chris Lattner's avatar
Chris Lattner committed

struct s {
  unsigned long long u33: 33;
  unsigned long long u40: 40;
};

struct s a = { 1, 2};

int foo() {
  return a.u40;
}