diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-10-26 18:01:48 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-10-26 18:01:48 +0200 |
commit | 1e502ef5a005525840629e99c5a3f9cf938da52b (patch) | |
tree | 83936115d6cbafdddef01d9bded6a41f5cd138b9 /passes | |
parent | 11705082648143c8be1a8b8fd4ef60ee81451c01 (diff) | |
download | yosys-1e502ef5a005525840629e99c5a3f9cf938da52b.tar.gz yosys-1e502ef5a005525840629e99c5a3f9cf938da52b.tar.bz2 yosys-1e502ef5a005525840629e99c5a3f9cf938da52b.zip |
Fix typo in opt_clean log message
Diffstat (limited to 'passes')
-rw-r--r-- | passes/opt/opt_clean.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/opt/opt_clean.cc b/passes/opt/opt_clean.cc index fb1851868..2d2ffa9a1 100644 --- a/passes/opt/opt_clean.cc +++ b/passes/opt/opt_clean.cc @@ -392,7 +392,7 @@ bool rmunused_module_init(RTLIL::Module *module, bool purge_mode, bool verbose) } if (verbose) - log(" removing redundent init attribute on %s.\n", log_id(wire)); + log(" removing redundant init attribute on %s.\n", log_id(wire)); wire->attributes.erase("\\init"); did_something = true; |