diff options
| author | Clifford Wolf <clifford@clifford.at> | 2013-11-24 17:17:21 +0100 |
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2013-11-24 17:17:21 +0100 |
| commit | 609caa23b5e12547c043dc4a1827d1a531af1992 (patch) | |
| tree | 297e7d5b77b28eebccc3bd8e7af318f174165744 /kernel/rtlil.cc | |
| parent | 1e6836933d8b74d391f816ccdcf71c972f8b1db1 (diff) | |
| download | yosys-609caa23b5e12547c043dc4a1827d1a531af1992.tar.gz yosys-609caa23b5e12547c043dc4a1827d1a531af1992.tar.bz2 yosys-609caa23b5e12547c043dc4a1827d1a531af1992.zip | |
Implemented correct handling of signed module parameters
Diffstat (limited to 'kernel/rtlil.cc')
| -rw-r--r-- | kernel/rtlil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index bd73fe538..afd7ca2f1 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -260,7 +260,7 @@ RTLIL::Module::~Module() delete it->second; } -RTLIL::IdString RTLIL::Module::derive(RTLIL::Design*, std::map<RTLIL::IdString, RTLIL::Const>) +RTLIL::IdString RTLIL::Module::derive(RTLIL::Design*, std::map<RTLIL::IdString, RTLIL::Const>, std::set<RTLIL::IdString>) { log_error("Module `%s' is used with parameters but is not parametric!\n", id2cstr(name)); } |
