diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-10 18:02:17 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-10 18:02:17 +0200 |
commit | 774933a0d88502585cf8c169280e71d0c3d182fc (patch) | |
tree | 18c07989447718e0aa16ac84bf2fdc04126d564b /passes/hierarchy/hierarchy.cc | |
parent | bbd808072be859074a023795a15bebab87cbfba8 (diff) | |
download | yosys-774933a0d88502585cf8c169280e71d0c3d182fc.tar.gz yosys-774933a0d88502585cf8c169280e71d0c3d182fc.tar.bz2 yosys-774933a0d88502585cf8c169280e71d0c3d182fc.zip |
Replaced fnmatch() with patmatch()
Diffstat (limited to 'passes/hierarchy/hierarchy.cc')
-rw-r--r-- | passes/hierarchy/hierarchy.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc index 960fc1929..68317a60a 100644 --- a/passes/hierarchy/hierarchy.cc +++ b/passes/hierarchy/hierarchy.cc @@ -17,11 +17,10 @@ * */ -#include "kernel/register.h" -#include "kernel/log.h" +#include "kernel/yosys.h" +#include "kernel/patmatch.h" #include <stdlib.h> #include <stdio.h> -#include <fnmatch.h> #include <set> #include <unistd.h> @@ -47,7 +46,7 @@ void generate(RTLIL::Design *design, const std::vector<std::string> &celltypes, if (cell->type.substr(0, 1) == "$" && cell->type.substr(0, 3) != "$__") continue; for (auto &pattern : celltypes) - if (!fnmatch(pattern.c_str(), RTLIL::unescape_id(cell->type).c_str(), FNM_NOESCAPE)) + if (patmatch(pattern.c_str(), RTLIL::unescape_id(cell->type).c_str())) found_celltypes.insert(cell->type); } @@ -97,7 +96,7 @@ void generate(RTLIL::Design *design, const std::vector<std::string> &celltypes, while (portnames.size() > 0) { RTLIL::IdString portname = *portnames.begin(); for (auto &decl : portdecls) - if (decl.index == 0 && !fnmatch(decl.portname.c_str(), RTLIL::unescape_id(portname).c_str(), FNM_NOESCAPE)) { + if (decl.index == 0 && patmatch(decl.portname.c_str(), RTLIL::unescape_id(portname).c_str())) { generate_port_decl_t d = decl; d.portname = portname; d.index = *indices.begin(); |