Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bn_mul.h: disable MULADDC code for cpu before armv6 #2324

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Bugfix
previously lead to a stack overflow on constrained targets.
* Add `MBEDTLS_SELF_TEST` for the mbedtls_self_test functions
in the header files, which missed the precompilation check. #971
* Fix compilation issue on ARM platform before armv6.
The `umaal` arm instruction is only available on ARM cpu with DSP starting
with armv6. Fixed by Vivien HENRIET (Overkiz). #2324

= mbed TLS 2.16.0 branch released 2018-12-21

Expand Down
2 changes: 1 addition & 1 deletion include/mbedtls/bn_mul.h
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@
"r6", "r7", "r8", "r9", "cc" \
);

#elif defined (__ARM_FEATURE_DSP) && (__ARM_FEATURE_DSP == 1)
#elif defined (__ARM_FEATURE_DSP) && (__ARM_FEATURE_DSP == 1) && (__ARM_ARCH >= 6)

#define MULADDC_INIT \
asm(
Expand Down