Closed maliberty closed 6 months ago
That is dead code. I would much rather see the test that demonstrates the problem than an english interpretation. The debugger can tell me what line of code fails. Fixed by f9618418 ccs_ceff, ccs_sim allow null drvr_pin, vdd check
In OR's Resizer::gateDelays we call
arc_delay_calc_->gateDelay(nullptr, ...
. With the default delay calculator this works fine but when switched to CCS it fails. In CcsSimDelayCalc::gateDelay it callswith the nullptr drvr_pin resulting in a nullptr drvr_vertex which is subsequently dereferenced.
What is the recommended way to call this API in the use model that the resizer is operating without a specific Pin to pass?