Signed operands do not make power (**) real.

This commit is contained in:
Stephen Williams 2008-08-16 15:36:14 -07:00
parent 30e6cfce41
commit 5ddf34d39b
1 changed files with 0 additions and 4 deletions

View File

@ -302,10 +302,6 @@ ivl_variable_type_t NetEBPow::expr_type() const
return IVL_VT_REAL;
if (left_->expr_type() == IVL_VT_REAL)
return IVL_VT_REAL;
if (left_->has_sign())
return IVL_VT_REAL;
if (right_->has_sign())
return IVL_VT_REAL;
return IVL_VT_LOGIC;
}