From 3f5aa5f40a74d9bf56cc2d40e99a109a5b3bee94 Mon Sep 17 00:00:00 2001 From: Wunder Wulfe <29297318+Wunder-Wulfe@users.noreply.github.com> Date: Sun, 23 Feb 2025 01:05:26 -0300 Subject: [PATCH] Added information in function-math-fma.md Added mention regarding compiler complexity --- docs/function-math-fma.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/function-math-fma.md b/docs/function-math-fma.md index 0721973..2df6fa0 100644 --- a/docs/function-math-fma.md +++ b/docs/function-math-fma.md @@ -113,6 +113,7 @@ When generating `native` code with `--!native` or `@native`, the operation shoul - The use of `math.fma` may result in confusing code if it is not cleanly implemented by the developer. - Additional function added to the `math` library, which may only see use from more experienced developers that understand the micro-optimization of mathematical operations. - Documentation for `math.fma`, particularly its benefits, pitfalls, and behavior are required to well explain when, why, and how to use `math.fma`. +- Complexity added to the compiler for native code generation. ## Alternatives