Files
tinygo/src/runtime
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
2019-11-04 09:15:21 +01:00
2019-05-11 15:33:37 +02:00
2019-07-01 13:03:07 +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-12-29 10:48:28 +01:00
2018-09-16 13:01:03 +02:00