Skip to content

Commit

Permalink
bn_mul.h: disable MULADDC code for cpu before armv6
Browse files Browse the repository at this point in the history
The umaal instruction is available for ARM cpu with DSP starting with armv6 thus it does not work on armv5e
  • Loading branch information
vhenriet-sfy committed Jan 14, 2019
1 parent 62ec2dd commit 1ce8019
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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

0 comments on commit 1ce8019

Please sign in to comment.