From f88e57ddb8ec83dd32e04ceea76e05652b49c990 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 22 Oct 2010 13:10:31 -0400 Subject: [PATCH] Fix DPI export name not found, msg369. --- Changes | 2 ++ include/verilated_imp.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index d047b5775..f446dd50a 100644 --- a/Changes +++ b/Changes @@ -9,6 +9,8 @@ indicates the contributor was also the author of the fix; Thanks! **** Fix segfault on SystemVerilog "output wire foo=0", bug291. [Joshua Wise] +**** Fix DPI export name not found, msg369. [Terry Chen] + * Verilator 3.804 2010/09/20 *** Support tracing/coverage of underscore signals, bug280. [by Jason McMullan] diff --git a/include/verilated_imp.h b/include/verilated_imp.h index 5dd2c6c8f..7899e5522 100644 --- a/include/verilated_imp.h +++ b/include/verilated_imp.h @@ -49,7 +49,7 @@ class VerilatedImp { typedef vector ArgVec; typedef map,void*> UserMap; typedef map ScopeNameMap; - typedef map ExportNameMap; + typedef map ExportNameMap; // MEMBERS static VerilatedImp s_s; ///< Static Singleton; One and only static this