mirror of https://github.com/ARMmbed/mbed-os.git
Fixed compiler warning suppression
"#3731-D: intrinsic is deprecated" compiler warnings should only be suppressed on the ARM toolchain.pull/2597/head
parent
284e9f8d3b
commit
9eafc810f3
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue