From 26adc17fd7e7ff94c6c8558e152b506644618f3c Mon Sep 17 00:00:00 2001 From: AdvaySingh1 Date: Wed, 4 Mar 2026 10:43:53 -0800 Subject: [PATCH] Revert "Changed to for chacterization" Removing changing _DFF_ to dff for chacterization --- passes/techmap/clockgate.cc | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/passes/techmap/clockgate.cc b/passes/techmap/clockgate.cc index ca7d01ec3..6a5f95d5b 100644 --- a/passes/techmap/clockgate.cc +++ b/passes/techmap/clockgate.cc @@ -395,12 +395,9 @@ struct ClockgatePass : public Pass { // Fix CE polarity if needed if (!clk.pol_ce) { Wire *ce_not_wire = module->addWire(NEW_ID2_SUFFIX("ce_not_w")); - Cell *ce_not = module->addCell(NEW_ID2_SUFFIX("ce_not"), ID($not)); - ce_not->setParam(ID::A_SIGNED, 0); - ce_not->setParam(ID::A_WIDTH, 1); - ce_not->setParam(ID::Y_WIDTH, 1); - ce_not->setPort(ID::A, clk.ce_bit); - ce_not->setPort(ID::Y, ce_not_wire); + Cell *ce_not = module->addCell(NEW_ID2_SUFFIX("ce_not"), ID($_NOT_)); + ce_not->setPort(ID::A, clk.ce_bit); + ce_not->setPort(ID::Y, ce_not_wire); gclk.ce_not_cell = ce_not; icg->setPort(matching_icg_desc->ce_pin, ce_not_wire); }