diff options
author | Ruben Undheim <ruben.undheim@gmail.com> | 2018-10-13 20:34:44 +0200 |
---|---|---|
committer | Ruben Undheim <ruben.undheim@gmail.com> | 2018-10-13 20:34:44 +0200 |
commit | c50afc4246d552db079aec303b0d79ae92107a67 (patch) | |
tree | 546271de9e8e4f61697785d0687ab289152ac6ca /kernel/rtlil.cc | |
parent | a36d1701dd99736b82f64ed870e7464f2deae220 (diff) | |
download | yosys-c50afc4246d552db079aec303b0d79ae92107a67.tar.gz yosys-c50afc4246d552db079aec303b0d79ae92107a67.tar.bz2 yosys-c50afc4246d552db079aec303b0d79ae92107a67.zip |
Documentation improvements etc.
- Mention new feature in the SystemVerilog section in the README file
- Commented changes much better
- Rename a few signals to make it clearer
- Prevent warning for unused signals in an easier way
- Add myself as copyright holder to 2 files
- Fix one potential memory leak (delete 'wire' if not in modport)
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 07dd4bfa0..14259f8ed 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -639,11 +639,9 @@ RTLIL::Module::~Module() delete it->second; } -void RTLIL::Module::reprocess_module(RTLIL::Design *design, dict<RTLIL::IdString, RTLIL::Module *> local_interfaces) +void RTLIL::Module::reprocess_module(RTLIL::Design *, dict<RTLIL::IdString, RTLIL::Module *>) { log_error("Cannot reprocess_module module `%s' !\n", id2cstr(name)); - (void)local_interfaces; // To remove build warning - (void)design; // To remove build warning } RTLIL::IdString RTLIL::Module::derive(RTLIL::Design*, dict<RTLIL::IdString, RTLIL::Const>, bool mayfail) |