mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 14:28:31 +00:00
Fix the fix for armcc5 --gnu
Only exclude armcc5, not armcc6.
This commit is contained in:
parent
ed46c436c0
commit
854dab96fe
1 changed files with 3 additions and 2 deletions
|
@ -46,8 +46,9 @@
|
|||
#define asm __asm
|
||||
#endif
|
||||
|
||||
/* armcc5 --gnu defined __GNUC__ but doesn't support GNU's extended asm */
|
||||
#if defined(__GNUC__) && !defined(__ARMCC_VERSION)
|
||||
/* armcc5 --gnu defines __GNUC__ but doesn't support GNU's extended asm */
|
||||
#if defined(__GNUC__) && \
|
||||
( !defined(__ARMCC_VERSION) || __ARMCC_VERSION >= 6000000 )
|
||||
#if defined(__i386__)
|
||||
|
||||
#define MULADDC_INIT \
|
||||
|
|
Loading…
Reference in a new issue