Fix comment annotation

Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com>
This commit is contained in:
Kamil Rakoczy 2022-11-10 14:00:14 +01:00 committed by Geza Lore
parent e64295e92b
commit 207bc2b18a

View File

@ -485,7 +485,7 @@ using ssize_t = uint32_t; ///< signed size_t; returned from read()
#elif defined(__powerpc64__)
# define VL_CPU_RELAX() asm volatile("or 1, 1, 1; or 2, 2, 2;" ::: "memory")
#elif defined(__loongarch__)
/ LoongArch does not currently have a yield/pause instruction
// LoongArch does not currently have a yield/pause instruction
# define VL_CPU_RELAX() asm volatile("nop" ::: "memory")
#else
# error "Missing VL_CPU_RELAX() definition."