This commit is contained in:
James Cherry 2020-01-23 20:50:22 -07:00
commit f7171d9bf4
1 changed files with 2 additions and 2 deletions

View File

@ -338,8 +338,8 @@ Sim::functionSense(const FuncExpr *expr,
const Pin *input_pin,
const Instance *inst)
{
TimingSense sense;
LogicValue value;
TimingSense sense = TimingSense::none;
LogicValue value = LogicValue::unknown;
functionSense(expr, input_pin, inst, sense, value);
return sense;
}