mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 13:03:31 +08:00
[src] [components] avoid compiler optimize
This commit is contained in:
parent
848c3ff02b
commit
edfe6d5b28
@ -92,7 +92,7 @@ void rt_components_board_init(void)
|
||||
rt_kprintf(":%d done\n", result);
|
||||
}
|
||||
#else
|
||||
const init_fn_t *fn_ptr;
|
||||
volatile const init_fn_t *fn_ptr;
|
||||
|
||||
for (fn_ptr = &__rt_init_rti_board_start; fn_ptr < &__rt_init_rti_board_end; fn_ptr++)
|
||||
{
|
||||
@ -118,7 +118,7 @@ void rt_components_init(void)
|
||||
rt_kprintf(":%d done\n", result);
|
||||
}
|
||||
#else
|
||||
const init_fn_t *fn_ptr;
|
||||
volatile const init_fn_t *fn_ptr;
|
||||
|
||||
for (fn_ptr = &__rt_init_rti_board_end; fn_ptr < &__rt_init_rti_end; fn_ptr ++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user