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
asm_arm.inc inline assembly functions such as uECC_vli_add has output registers written to before the input registers are fully consumed. The inline assembly constraints for those registers are underspecified and must include earlyclobber constraint "&".
Compiling with GCC for cortex-M4 does not create any problems even though the constraints are currently underspecified but could potentially break the code in the future.
The text was updated successfully, but these errors were encountered:
asm_arm.inc inline assembly functions such as uECC_vli_add has output registers written to before the input registers are fully consumed. The inline assembly constraints for those registers are underspecified and must include earlyclobber constraint "&".
Compiling with GCC for cortex-M4 does not create any problems even though the constraints are currently underspecified but could potentially break the code in the future.
The text was updated successfully, but these errors were encountered: