From 9800c0ad3dc278222c557060178d6de604dbd7bc Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 16 Apr 2021 10:31:49 +0200 Subject: [PATCH] Correct my botched patch on Etesian::HFNS buffer vs. net naming. --- etesian/src/HFNS.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etesian/src/HFNS.cpp b/etesian/src/HFNS.cpp index 47a0ec1b..5c13330b 100644 --- a/etesian/src/HFNS.cpp +++ b/etesian/src/HFNS.cpp @@ -230,12 +230,12 @@ namespace Etesian { Net* blockNet = NULL; Path outputPath = Path(); - driverName.insert( 0, "cmpt_" ); - _buffer = Instance::create( cellPnR, driverName, bufferDatas->getCell() ); - - getSubNetNames()->nextSubNet(); _driverNet = Net::create( topCell, driverName ); _driverNet->setDirection( Net::Direction::OUT ); + getSubNetNames()->nextSubNet(); + + driverName.insert( 0, "cmpt_" ); + _buffer = Instance::create( cellPnR, driverName, bufferDatas->getCell() ); if (topCell == cellPnR) blockNet = _driverNet; else { outputPath = Path( instancePnR );