Ayke van Laethem
1a7369af6e
runtime: return the correct type from the copy builtin
...
The copy builtin is defined as follows by the Go language spec:
copy(dst, src []T) int
copy(dst []byte, src string) int
In other words, it returns an int. The runtime.sliceCopy compiler
intrinsic returned a uintptr instead, which led to a problem while
compiling the strings package for AVR.
No other architecture should be affected by this change as the
conversion from an uintptr to an int is a no-op on most architectures.
2020-03-11 15:44:31 -07:00
..
2018-09-14 20:58:00 +02:00
2019-04-13 19:58:58 +02:00
2020-01-27 21:56:17 +01:00
2020-02-11 15:55:14 +01:00
2019-08-25 13:12:27 +02:00
2019-08-25 13:12:27 +02:00
2019-08-25 13:12:27 +02:00
2019-08-25 13:12:27 +02:00
2019-08-25 13:12:27 +02:00
2019-07-07 14:03:24 +02:00
2019-07-07 14:03:24 +02:00
2020-01-27 20:34:10 +01:00
2018-09-16 13:01:03 +02:00
2020-01-27 20:34:10 +01:00
2020-01-28 20:17:11 +01:00
2019-11-04 09:15:21 +01:00
2019-05-11 15:33:37 +02:00
2018-12-09 16:44:37 +01:00
2019-05-11 15:33:37 +02:00
2019-08-05 14:44:30 +02:00
2020-01-27 19:01:55 +01:00
2019-08-04 17:12:07 +02:00
2019-08-04 17:12:07 +02:00
2019-07-01 13:03:07 +02:00
2018-11-17 15:14:29 +01:00
2019-08-04 17:12:07 +02:00
2019-08-25 13:12:27 +02:00
2020-02-26 20:42:01 +01:00
2019-11-09 13:41:27 -05:00
2019-07-08 00:32:42 +02:00
2019-02-19 15:54:36 +01:00
2019-12-29 10:48:28 +01:00
2018-08-30 05:48:16 +02:00
2018-08-30 05:48:16 +02:00
2019-05-27 13:35:59 +02:00
2019-01-14 20:56:42 +01:00
2019-04-25 14:06:34 +02:00
2020-01-27 21:56:17 +01:00
2019-05-14 12:24:01 +02:00
2020-01-20 21:19:12 +01:00
2019-05-19 19:53:11 +02:00
2019-05-19 19:53:11 +02:00
2020-01-20 21:19:12 +01:00
2019-10-09 18:53:32 +02:00
2019-11-05 15:34:46 +01:00
2020-01-06 11:53:43 +01:00
2018-11-20 18:50:24 +01:00
2019-10-06 13:07:52 +02:00
2019-12-07 16:47:40 +01:00
2020-01-27 20:34:10 +01:00
2020-01-10 08:04:13 +01:00
2020-01-10 08:04:13 +01:00
2020-01-27 20:34:10 +01:00
2020-01-20 21:19:12 +01:00
2019-01-21 22:09:33 +01:00
2020-01-20 21:19:12 +01:00
2020-01-20 21:19:12 +01:00
2019-07-07 14:03:24 +02:00
2019-12-29 10:48:28 +01:00
2020-01-28 20:31:09 +01:00
2019-11-10 08:54:06 +01:00
2019-09-22 17:58:00 +02:00
2019-11-23 13:55:19 +01:00
2019-11-23 13:55:19 +01:00
2019-10-18 11:29:27 +02:00
2020-03-11 15:44:31 -07:00
2018-08-30 22:53:34 +02:00
2019-11-10 21:33:11 +01:00
2019-11-10 21:33:11 +01:00
2019-05-24 14:51:40 +02:00
2018-09-16 13:01:03 +02:00