forked from github/verilator
Fix SystemC 2.3.2 compile error, bug1251.
Signed-off-by: Wilson Snyder <wsnyder@wsnyder.org>
This commit is contained in:
parent
37a931feb4
commit
173f71dca6
2
Changes
2
Changes
@ -15,6 +15,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
|||||||
|
|
||||||
**** Add error if always_comb has sensitivity list. [Arjen Roodselaar]
|
**** Add error if always_comb has sensitivity list. [Arjen Roodselaar]
|
||||||
|
|
||||||
|
**** Fix SystemC 2.3.2 compile error, bug1251. [Tymoteusz Blazejczyk]
|
||||||
|
|
||||||
**** Fix modport outputs being treated as inputs, bug1246. [Jeff Bush]
|
**** Fix modport outputs being treated as inputs, bug1246. [Jeff Bush]
|
||||||
|
|
||||||
**** Fix false ALWCOMBORDER on interface references, bug1247. [Josh Redford]
|
**** Fix false ALWCOMBORDER on interface references, bug1247. [Josh Redford]
|
||||||
|
@ -39,6 +39,11 @@ void VerilatedVcdSc::trace (const unsigned int &, const std::string &, const cha
|
|||||||
# define DECL_TRACE_METHOD_B(tp) \
|
# define DECL_TRACE_METHOD_B(tp) \
|
||||||
void VerilatedVcdSc::trace( const tp& object, const std::string& name, int width ) {}
|
void VerilatedVcdSc::trace( const tp& object, const std::string& name, int width ) {}
|
||||||
|
|
||||||
|
#if (SYSTEMC_VERSION>=20171012)
|
||||||
|
DECL_TRACE_METHOD_A( sc_event )
|
||||||
|
DECL_TRACE_METHOD_A( sc_time )
|
||||||
|
#endif
|
||||||
|
|
||||||
DECL_TRACE_METHOD_A( bool )
|
DECL_TRACE_METHOD_A( bool )
|
||||||
DECL_TRACE_METHOD_A( sc_dt::sc_bit )
|
DECL_TRACE_METHOD_A( sc_dt::sc_bit )
|
||||||
DECL_TRACE_METHOD_A( sc_dt::sc_logic )
|
DECL_TRACE_METHOD_A( sc_dt::sc_logic )
|
||||||
|
@ -96,6 +96,11 @@ private:
|
|||||||
virtual void write_comment (const std::string &);
|
virtual void write_comment (const std::string &);
|
||||||
virtual void trace (const unsigned int &, const std::string &, const char **);
|
virtual void trace (const unsigned int &, const std::string &, const char **);
|
||||||
|
|
||||||
|
#if (SYSTEMC_VERSION>=20171012)
|
||||||
|
DECL_TRACE_METHOD_A( sc_event )
|
||||||
|
DECL_TRACE_METHOD_A( sc_time )
|
||||||
|
#endif
|
||||||
|
|
||||||
DECL_TRACE_METHOD_A( bool )
|
DECL_TRACE_METHOD_A( bool )
|
||||||
DECL_TRACE_METHOD_A( sc_dt::sc_bit )
|
DECL_TRACE_METHOD_A( sc_dt::sc_bit )
|
||||||
DECL_TRACE_METHOD_A( sc_dt::sc_logic )
|
DECL_TRACE_METHOD_A( sc_dt::sc_logic )
|
||||||
|
Loading…
Reference in New Issue
Block a user