mbed_boot_gcc_arm.c: remove redundant compiler check

pull/9352/head
Przemyslaw Stekiel 2019-01-11 12:59:53 +01:00
parent bfcdb7dd3c
commit 8cc4234181
1 changed files with 0 additions and 2 deletions

View File

@ -30,13 +30,11 @@ static mbed_rtos_storage_mutex_t env_mutex_obj;
static osMutexAttr_t env_mutex_attr;
#if !defined(ISR_STACK_SIZE)
#if (defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC_VERSION))
extern uint32_t __StackLimit;
extern uint32_t __StackTop;
#define ISR_STACK_START ((unsigned char*)&__StackLimit)
#define ISR_STACK_SIZE ((uint32_t)((uint32_t)&__StackTop - (uint32_t)&__StackLimit))
#endif
#endif
#if !defined(HEAP_START)
/* Defined by linker script */