Add IVL_LPM_CMP_EQ

This commit is contained in:
Nick Gasson 2008-07-18 11:58:26 +01:00
parent fd8f01e317
commit 8b6b111541
1 changed files with 1 additions and 0 deletions

View File

@ -248,6 +248,7 @@ static vhdl_expr *lpm_to_expr(vhdl_scope *scope, ivl_lpm_t lpm)
return concat_lpm_to_expr(scope, lpm);
case IVL_LPM_CMP_GE:
return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_GEQ);
case IVL_LPM_CMP_EQ:
case IVL_LPM_CMP_EEQ:
return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_EQ);
case IVL_LPM_PART_VP: