Files
tinygo/compiler
Ayke van Laethem ba95eb3e1b compiler: use LLVM intrinsics for math trig operations
I think this failed in the past, but presumably those failures have been
fixed by now. So these intrinsics can now be used.

Using these intrinsics instead of the native Go implementations helps
LLVM to reason about them: it can for example evaluate the value at
compile time or do optimizations like convert
`float32(math.Sin(float64(x)))` into a 32-bit sin operation. If the math
operation is not available on the target platform the C library
implementation will be used instead.
2026-06-25 18:31:58 +02:00
..
2025-02-25 14:41:42 +01:00
2021-09-27 15:47:12 +02:00
2023-10-01 18:32:15 +02:00
2026-04-05 14:14:55 +02:00
2026-05-25 16:58:01 +02:00
2026-05-25 16:58:01 +02:00