@@ -308,19 +308,19 @@ LibertyBuilder::makeCombinationalArcs(LibertyCell *cell,
308
308
TimingArcAttrsPtr attrs)
309
309
{
310
310
FuncExpr *func = to_port->function ();
311
- FuncExpr *enable = to_port->tristateEnable ();
311
+ // FuncExpr *enable = to_port->tristateEnable();
312
312
TimingArcSet *arc_set = makeTimingArcSet (cell, from_port, to_port,
313
313
TimingRole::combinational (), attrs);
314
314
TimingSense sense = attrs->timingSense ();
315
315
if (sense == TimingSense::unknown) {
316
316
// Timing sense not specified - find it from function.
317
317
if (func && func->hasPort (from_port))
318
318
sense = func->portTimingSense (from_port);
319
- // Check tristate enable.
320
- else if (to_port->direction ()->isAnyTristate ()
321
- && enable
322
- && enable->hasPort (from_port))
323
- sense = TimingSense::non_unate;
319
+ // // Check tristate enable.
320
+ // else if (to_port->direction()->isAnyTristate()
321
+ // && enable
322
+ // && enable->hasPort(from_port))
323
+ // sense = TimingSense::non_unate;
324
324
// Don't warn for functions that reference ff/latch/lut internal ports.
325
325
// else if (func->port() && !func->port()->direction()->isInternal())
326
326
// report_->fileWarn(172, cell->filename(), line,
0 commit comments