diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-04-16 23:20:34 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-04-16 23:20:34 +0200 |
commit | fbdb8e7b3ed94993228181f949506355989ef54b (patch) | |
tree | e694510850d2d1837dc77f02473b5767298d9636 /passes | |
parent | a07f893a5fd018e426e1aa6de7ad986ea8acd468 (diff) | |
download | yosys-fbdb8e7b3ed94993228181f949506355989ef54b.tar.gz yosys-fbdb8e7b3ed94993228181f949506355989ef54b.tar.bz2 yosys-fbdb8e7b3ed94993228181f949506355989ef54b.zip |
Fixed copy&paste error in log message in lut2mux
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/lut2mux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/lut2mux.cc b/passes/techmap/lut2mux.cc index fe55e499a..b2c4f31a8 100644 --- a/passes/techmap/lut2mux.cc +++ b/passes/techmap/lut2mux.cc @@ -67,7 +67,7 @@ struct Lut2muxPass : public Pass { } virtual void execute(std::vector<std::string> args, RTLIL::Design *design) { - log_header("Executing LUT2MUX pass (mapping to constant drivers).\n"); + log_header("Executing LUT2MUX pass (convert $lut to $_MUX_).\n"); size_t argidx; for (argidx = 1; argidx < args.size(); argidx++) |