diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-01-03 16:54:59 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-01-03 16:54:59 +0100 |
commit | 8a8d444648bd1744c2598854367fd14d143aeb78 (patch) | |
tree | 0987bbf1896a5767827fcacac9bb5683ebfcbbf8 /passes/proc/proc_mux.cc | |
parent | 60fbca9970e1b92d61642b86d2a3170b5b33ad6f (diff) | |
download | yosys-8a8d444648bd1744c2598854367fd14d143aeb78.tar.gz yosys-8a8d444648bd1744c2598854367fd14d143aeb78.tar.bz2 yosys-8a8d444648bd1744c2598854367fd14d143aeb78.zip |
Tiny cleanup in proc_mux.cc
Diffstat (limited to 'passes/proc/proc_mux.cc')
-rw-r--r-- | passes/proc/proc_mux.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/passes/proc/proc_mux.cc b/passes/proc/proc_mux.cc index c7121959a..9b2f83885 100644 --- a/passes/proc/proc_mux.cc +++ b/passes/proc/proc_mux.cc @@ -186,9 +186,6 @@ static void append_pmux(RTLIL::Module *mod, const RTLIL::SigSpec &signal, const assert(last_mux_cell != NULL); assert(when_signal.width == last_mux_cell->connections["\\A"].width); - std::stringstream sstr; - sstr << "$procmux$" << (RTLIL::autoidx++); - RTLIL::SigSpec ctrl_sig = gen_cmp(mod, signal, compare, sw); assert(ctrl_sig.width == 1); last_mux_cell->type = "$pmux"; |