Merge pull request #8719 from daverodgman/iar-codegen

Improve codegen of unaligned access for IAR and gcc
This commit is contained in:
Dave Rodgman 2024-01-25 08:31:45 +00:00 committed by GitHub
commit f5e231ca84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 193 additions and 38 deletions

View file

@ -83,6 +83,14 @@
#endif
#endif
#if defined(__GNUC__) && !defined(__ARMCC_VERSION) && !defined(__clang__) \
&& !defined(__llvm__) && !defined(__INTEL_COMPILER)
/* Defined if the compiler really is gcc and not clang, etc */
#define MBEDTLS_COMPILER_IS_GCC
#define MBEDTLS_GCC_VERSION \
(__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#endif
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
#define _CRT_SECURE_NO_DEPRECATE 1
#endif