Files
cc65/src
Jesse Rosenstock 9858e47dfd Pad bit-fields only to the next byte
Fixes #1054.

Previously, bit-fields followed by another field were aligned
to two bytes.  Bit-fields ending the struct were (and continue
to be) aligned only to a single byte.

```
struct s {
  unsigned int x : 4;
};

struct t {
  unsigned int x : 4;
  unsigned int y;
};
```

Before: `sizeof(struct s) == 1`, sizeof(struct t) == 4`
After: `sizeof(struct s) == 1` sizeof(struct t) == 3`
2020-07-08 16:46:34 +02:00
..
2020-07-08 16:46:34 +02:00
2020-07-08 16:45:00 +02:00
2020-02-21 08:12:05 -05:00
2020-03-11 18:07:08 -04:00
2019-05-22 11:33:43 +02:00