From 207bc2b18a0ed4c8f48083213fc338b209ed2d3a Mon Sep 17 00:00:00 2001 From: Kamil Rakoczy Date: Thu, 10 Nov 2022 14:00:14 +0100 Subject: [PATCH] Fix comment annotation Signed-off-by: Kamil Rakoczy --- include/verilatedos.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/verilatedos.h b/include/verilatedos.h index 41e74684a..3d755f270 100644 --- a/include/verilatedos.h +++ b/include/verilatedos.h @@ -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."