Skip to content

Commit 8cc4234

Browse files
committed
mbed_boot_gcc_arm.c: remove redundant compiler check
1 parent bfcdb7d commit 8cc4234

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rtos/TARGET_CORTEX/TOOLCHAIN_GCC_ARM/mbed_boot_gcc_arm.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,11 @@ static mbed_rtos_storage_mutex_t env_mutex_obj;
3030
static osMutexAttr_t env_mutex_attr;
3131

3232
#if !defined(ISR_STACK_SIZE)
33-
#if (defined(__GNUC__) && !defined(__CC_ARM) && !defined(__ARMCC_VERSION))
3433
extern uint32_t __StackLimit;
3534
extern uint32_t __StackTop;
3635
#define ISR_STACK_START ((unsigned char*)&__StackLimit)
3736
#define ISR_STACK_SIZE ((uint32_t)((uint32_t)&__StackTop - (uint32_t)&__StackLimit))
3837
#endif
39-
#endif
4038

4139
#if !defined(HEAP_START)
4240
/* Defined by linker script */

0 commit comments

Comments
 (0)