systemc: Add some deprecated sc_module constructors.
Change-Id: Ibe2bfe63536af33fca6040f4aef999ee928d876b Reviewed-on: https://gem5-review.googlesource.com/11278 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
This commit is contained in:
@@ -155,6 +155,16 @@ sc_module::sc_module()
|
||||
warn("%s not implemented.\n", __PRETTY_FUNCTION__);
|
||||
}
|
||||
|
||||
sc_module::sc_module(const char *)
|
||||
{
|
||||
warn("%s not implemented.\n", __PRETTY_FUNCTION__);
|
||||
}
|
||||
|
||||
sc_module::sc_module(const std::string &)
|
||||
{
|
||||
warn("%s not implemented.\n", __PRETTY_FUNCTION__);
|
||||
}
|
||||
|
||||
void
|
||||
sc_module::reset_signal_is(const sc_in<bool> &, bool)
|
||||
{
|
||||
|
||||
@@ -148,6 +148,10 @@ class sc_module : public sc_object
|
||||
sc_module(const sc_module_name &);
|
||||
sc_module();
|
||||
|
||||
// Deprecated
|
||||
sc_module(const char *);
|
||||
sc_module(const std::string &);
|
||||
|
||||
/* Deprecated, but used in the regression tests. */
|
||||
void end_module() {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user