From eabbf6d22527f386811c7b507f74f887a258b397 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Wed, 1 Apr 2026 12:46:31 +0200 Subject: [PATCH] techmap: call hierarchy on map files to determine port directions --- passes/techmap/techmap.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 7453d9cde..a19590452 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -1244,6 +1244,7 @@ struct TechmapPass : public Pass { Frontend::frontend_call(map, nullptr, fn, (fn.size() > 3 && fn.compare(fn.size()-3, std::string::npos, ".il") == 0 ? "rtlil" : verilog_frontend)); } } + Pass::call(map, "hierarchy"); log_header(design, "Continuing TECHMAP pass.\n");