Fixed a dumb mistake in compilation macros which meant that fix16_mul didn't correctly compile for a certain mix of ARM and Thumb macros.

This commit is contained in:
Flatmush 2011-03-14 20:57:36 +00:00
parent e83267f757
commit ccf378f1e0
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ fix16_t fix16_sadd(fix16_t inArg0, fix16_t inArg1) {
#if defined(__arm__) || defined(_ARM) && !defined(__thumb__)
#if (defined(__arm__) || defined(_ARM)) && !defined(__thumb__)
fix16_t fix16_mul(int32_t inArg0, int32_t inArg1) {
fix16_t res;
asm(