Files
tinygo/compiler
Ayke van Laethem 99da328453 compiler: avoid bitcast when replacing a method call with a direct call
A bitcast was inserted when the receiver of the call wasn't a *i8. This
is a pretty common case, and did not play well with goroutines.
Avoid this bitcast by changing each call to a direct call, after
unpacking the receiver type from the *i8 parameter. This might also fix
some undefined behavior in the resulting program, as it is technically
not allowed to call a function with a different signature (even if the
signature is compatible).
2019-05-01 12:12:30 +02:00
..
2019-04-26 08:52:10 +02:00
2019-04-26 09:17:52 +02:00
2019-04-26 08:52:10 +02:00
2019-04-26 08:52:10 +02:00
2019-01-27 19:26:16 +01:00
2019-04-26 08:52:10 +02:00
2019-04-17 11:56:40 +02:00
2019-04-26 08:52:10 +02:00