You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operators in expression.c are being calculated with 64 bit longs, even if the original operands are 8, 16, or 32 bits. On 32 bit architectures (e.g. microcontrollers) this means calculations take longer. But would it be even slower to implement the correct C promotion rules?
The text was updated successfully, but these errors were encountered:
Operators in expression.c are being calculated with 64 bit longs, even if the original operands are 8, 16, or 32 bits. On 32 bit architectures (e.g. microcontrollers) this means calculations take longer. But would it be even slower to implement the correct C promotion rules?
The text was updated successfully, but these errors were encountered: