diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-05-27 13:49:42 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-05-27 13:49:42 -0700 |
commit | 428d7c8e11db3aa4d65b0509946a47b005f87988 (patch) | |
tree | 09fe9c0da7801065a22ee012aeaf812df0df3b6b | |
parent | e115e736fa58ff1b3acc5e97897f09efbe112823 (diff) | |
download | yosys-428d7c8e11db3aa4d65b0509946a47b005f87988.tar.gz yosys-428d7c8e11db3aa4d65b0509946a47b005f87988.tar.bz2 yosys-428d7c8e11db3aa4d65b0509946a47b005f87988.zip |
Remove unused function
-rw-r--r-- | frontends/aiger/aigerparse.cc | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/frontends/aiger/aigerparse.cc b/frontends/aiger/aigerparse.cc index a70db6c76..66b27fdd8 100644 --- a/frontends/aiger/aigerparse.cc +++ b/frontends/aiger/aigerparse.cc @@ -162,29 +162,6 @@ static RTLIL::Wire* createWireIfNotExists(RTLIL::Module *module, unsigned litera return wire; } -static std::pair<RTLIL::IdString, int> wideports_split(std::string name) -{ - int pos = -1; - - if (name.empty() || name.back() != ']') - goto failed; - - for (int i = 0; i+1 < GetSize(name); i++) { - if (name[i] == '[') - pos = i; - else if (name[i] < '0' || name[i] > '9') - pos = -1; - else if (i == pos+1 && name[i] == '0' && name[i+1] != ']') - pos = -1; - } - - if (pos >= 0) - return std::pair<RTLIL::IdString, int>(RTLIL::escape_id(name.substr(0, pos)), atoi(name.c_str() + pos+1)); - -failed: - return std::pair<RTLIL::IdString, int>(name, 0); -} - void AigerReader::parse_xaiger() { std::string header; |