Remove comment for define being M4 only it can be M7 too

Co-authored-by: Scott Shawcroft <scott@tannewt.org>
This commit is contained in:
Mark 2021-04-12 22:35:55 -05:00 committed by GitHub
parent 9bf4b4d81e
commit 7ace53f22c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ void audiomixer_mixer_reset_buffer(audiomixer_mixer_obj_t *self,
__attribute__((always_inline))
static inline uint32_t add16signed(uint32_t a, uint32_t b) {
#if (defined(__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) // Cortex-M4 w/FPU
#if (defined(__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1))
return __QADD16(a, b);
#else
uint32_t result = 0;