Add missing 'inline' to function in verilated.h

Otherwise we get a separate copy of this function in every
compilation unit including this header.
This commit is contained in:
Geza Lore 2021-06-08 23:01:30 +01:00
parent 6fd48da7cf
commit 809701d7c6

View File

@ -1795,7 +1795,7 @@ static inline WDataOutP VL_NEGATE_W(int words, WDataOutP owp, WDataInP lwp) VL_M
}
return owp;
}
static void VL_NEGATE_INPLACE_W(int words, WDataOutP owp_lwp) VL_MT_SAFE {
static inline void VL_NEGATE_INPLACE_W(int words, WDataOutP owp_lwp) VL_MT_SAFE {
EData carry = 1;
for (int i = 0; i < words; ++i) {
EData word = ~owp_lwp[i] + carry;