Files
tinygo/testdata
Steven Kabbes 4c7449efe5 compiler: alignof [0]func() = 1
In the go protobuf code, a pattern is used to statically prevent
comparable structs by embedding:

```
type DoNotCompare [0]func()

type message struct {
  DoNotCompare
  data *uint32
}
```

Previously, sizezof(message{}) is 2 words large, but it only needs to be
1 byte.  Making it be 1 byte allows protobufs to compile slightly more
(though not all the way).
2022-05-19 08:02:32 +02:00
..
2019-09-20 10:35:49 +02:00
2019-09-20 10:35:49 +02:00
2021-04-09 18:33:48 +02:00
2020-01-27 19:01:55 +01:00
2022-01-19 14:42:02 -05:00
2021-04-09 18:33:48 +02:00
2021-04-09 18:33:48 +02:00
2022-05-18 15:20:09 +02:00
2019-02-05 19:37:21 +01:00
2019-02-05 19:37:21 +01:00
2020-10-02 11:26:22 +02:00
2020-10-02 11:26:22 +02:00
2022-05-19 08:02:32 +02:00
2018-10-20 17:22:51 +02:00
2020-10-23 21:37:35 +02:00
2020-10-23 21:37:35 +02:00
2021-12-15 17:52:48 +01:00
2019-10-13 23:07:47 +02:00
2019-10-13 23:07:47 +02:00
2020-05-12 01:17:27 +02:00