Fixed compiler warning suppression

"#3731-D: intrinsic is deprecated" compiler warnings should only be suppressed on the ARM toolchain.
pull/2597/head
Neil Thiessen 2016-08-31 13:30:45 -06:00 committed by GitHub
parent 284e9f8d3b
commit 9eafc810f3
1 changed files with 2 additions and 0 deletions

View File

@ -87,7 +87,9 @@ void core_util_critical_section_exit(void)
#if EXCLUSIVE_ACCESS
/* Supress __ldrex and __strex deprecated warnings - "#3731-D: intrinsic is deprecated" */
#if defined (__CC_ARM)
#pragma diag_suppress 3731
#endif
bool core_util_atomic_cas_u8(uint8_t *ptr, uint8_t *expectedCurrentValue, uint8_t desiredValue)
{