1 /* 2 * Copyright 2021, Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 extern "C" void 8 __riscv_flush_icache(void *start, void *end, unsigned long int flags) 9 { 10 __asm__ volatile ("fence.i"); 11 } 12