From 6748b135aaaa2324329a3d0e1e7953551c549a65 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Wed, 20 May 2026 22:00:20 -0700 Subject: [PATCH] Track icg cell name in clockgate --- passes/techmap/clockgate.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/passes/techmap/clockgate.cc b/passes/techmap/clockgate.cc index 5456c9724..1e0858224 100644 --- a/passes/techmap/clockgate.cc +++ b/passes/techmap/clockgate.cc @@ -548,6 +548,7 @@ struct ClockgatePass : public Pass { // Rebuild the flop Cell *new_ff = ff.emit(); new_ff->set_bool_attribute(ID::is_clock_gated); + new_ff->set_string_attribute(ID(preqorsor_icg), it->second.icg_cell->name.str()); // Update the flop with new activity/duty attributes if (it->second.activity_set) {