Skip to content

Commit bfcdb7d

Browse files
committed
mbed_boot_arm_std.c: remove redundant compiler check
Check is not needed since this file is exclusive for ARM compiler. It causes problems on ARMC6.
1 parent 28d5477 commit bfcdb7d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rtos/TARGET_CORTEX/TOOLCHAIN_ARM_STD/mbed_boot_arm_std.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@ __value_in_regs struct __argc_argv __rt_lib_init(unsigned heapbase, unsigned hea
2828
void _platform_post_stackheap_init(void);
2929

3030
#if !defined(ISR_STACK_SIZE)
31-
#if (defined(__CC_ARM))
3231
extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Base[];
3332
extern uint32_t Image$$ARM_LIB_STACK$$ZI$$Length[];
3433
#define ISR_STACK_START ((unsigned char*)Image$$ARM_LIB_STACK$$ZI$$Base)
3534
#define ISR_STACK_SIZE ((uint32_t)Image$$ARM_LIB_STACK$$ZI$$Length)
3635
#endif
37-
#endif
3836

3937
#if !defined(HEAP_START)
4038
/* Defined by linker script */

0 commit comments

Comments
 (0)