From 0b8daf4ae42b5ea9e4185d818475e6b9d23d2fc7 Mon Sep 17 00:00:00 2001 From: github action Date: Tue, 23 Jan 2024 18:06:10 +0000 Subject: [PATCH] Apply 'make format' --- include/verilated_funcs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/verilated_funcs.h b/include/verilated_funcs.h index fbb5aef37..0e4207e3f 100644 --- a/include/verilated_funcs.h +++ b/include/verilated_funcs.h @@ -1290,7 +1290,8 @@ static inline void _vl_insert_WI(WDataOutP iowp, IData ld, int hbit, int lbit, const EData linsmask = (VL_MASK_E((VL_EDATASIZE - 1) - loffset + 1)) << loffset; const int nbitsonright = VL_EDATASIZE - loffset; // bits that end up in lword iowp[lword] = (iowp[lword] & ~linsmask) | ((lde << loffset) & linsmask); - // Prevent unsafe write where lword was final writable location and hword is out-of-bounds. + // Prevent unsafe write where lword was final writable location and hword is + // out-of-bounds. if (VL_LIKELY(!(hword == rword && roffset == 0))) { iowp[hword] = (iowp[hword] & ~hinsmask) | ((lde >> nbitsonright) & (hinsmask & cleanmask));