From a84faabdb048b3a43cd51891711f643734e88e48 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 25 Sep 2009 11:45:04 -0700 Subject: [PATCH] A real wire needs an explicit initial value. To keep valgrind happy we need to give real wires an explicit initial value of 0.0. --- vvp/vvp_net_sig.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/vvp/vvp_net_sig.cc b/vvp/vvp_net_sig.cc index 766f47899..50a5edb79 100644 --- a/vvp/vvp_net_sig.cc +++ b/vvp/vvp_net_sig.cc @@ -911,6 +911,7 @@ vvp_vector4_t vvp_wire_vec8::vec4_value() const } vvp_wire_real::vvp_wire_real() +: bit_(0.0) { }