aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-14 12:25:06 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-14 12:25:06 -0700
commita48b5bfaa5c55bfe4e5ff859b453ee00a1dd68c6 (patch)
treeb394f54f4af7d7cab0b987b70645a46f9d67a905 /passes/techmap
parent97d265637505a239e3d328a3ee7e26c6fd5d6744 (diff)
downloadyosys-a48b5bfaa5c55bfe4e5ff859b453ee00a1dd68c6.tar.gz
yosys-a48b5bfaa5c55bfe4e5ff859b453ee00a1dd68c6.tar.bz2
yosys-a48b5bfaa5c55bfe4e5ff859b453ee00a1dd68c6.zip
Further cleanup based on @daveshah1
Diffstat (limited to 'passes/techmap')
-rw-r--r--passes/techmap/abc9.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc
index 99083c20a..04e7d5d13 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -61,17 +61,12 @@ extern "C" int Abc_RealMain(int argc, char *argv[]);
USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN
-bool map_mux4;
-bool map_mux8;
-bool map_mux16;
-
bool markgroups;
int map_autoidx;
SigMap assign_map;
RTLIL::Module *module;
std::map<RTLIL::SigBit, int> signal_map;
std::map<RTLIL::SigBit, RTLIL::State> signal_init;
-pool<std::string> enabled_gates;
bool recover_init;
bool clk_polarity, en_polarity;
@@ -848,11 +843,6 @@ struct Abc9Pass : public Pass {
show_tempdir = true;
#endif
- map_mux4 = false;
- map_mux8 = false;
- map_mux16 = false;
- enabled_gates.clear();
-
#ifdef _WIN32
#ifndef ABCEXTERNAL
if (!check_file_exists(exe_file + ".exe") && check_file_exists(proc_self_dirname() + "..\\yosys-abc.exe"))