From bdc162db87dc10dbde1c35ee13c9d7ba79785f2a Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sun, 16 May 2021 18:38:43 -0400 Subject: [PATCH] Fix 16.04 gcc warning --- include/verilated.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/verilated.cpp b/include/verilated.cpp index f8b460439..aa4bb49c3 100644 --- a/include/verilated.cpp +++ b/include/verilated.cpp @@ -650,7 +650,7 @@ std::string _vl_vsformat_time(char* tmp, T ld, int timeunit, bool left, size_t w constexpr int w = VL_WORDS_I(b); WData tmp0[w], tmp1[w], tmp2[w], tmp3[w]; - WDataInP shifted = VL_EXTEND_WQ(b, 0, tmp0, ld); + WDataInP shifted = VL_EXTEND_WQ(b, 0, tmp0, static_cast(ld)); if (shift < 0) { WDataInP pow10 = VL_EXTEND_WQ(b, 0, tmp1, vl_time_pow10(-shift)); shifted = VL_DIV_WWW(b, tmp2, shifted, pow10);