1// See LICENSE for license details.
2
3void __riscv_flush_icache(void) {
4  __asm__ volatile ("fence.i");
5}
6