Instruction Cache and Prefetch Buffer Settings are ignored if only LL library is used
When using HAL library, HAL_Init has init code:
#if (INSTRUCTION_CACHE_ENABLE == 0U)
__HAL_FLASH_INSTRUCTION_CACHE_DISABLE();
#endif /* INSTRUCTION_CACHE_ENABLE */
#if (PREFETCH_ENABLE != 0U)
__HAL_FLASH_PREFETCH_BUFFER_ENABLE();
#endif /* PREFETCH_ENABLE */
But when using ONLY LL library, these two settings are ignored. Enabling or disabling the two settings generates the same code. Please fix it.
