Implement IVL_LPM_CMP_NE(E)

Looks like I forgot this one
This commit is contained in:
Nick Gasson 2008-10-05 17:04:19 +01:00
parent a7cbb38248
commit b40de5ccb0
1 changed files with 3 additions and 0 deletions

View File

@ -243,6 +243,9 @@ static vhdl_expr *lpm_to_expr(vhdl_scope *scope, ivl_lpm_t lpm)
return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_GEQ);
case IVL_LPM_CMP_GT:
return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_GT);
case IVL_LPM_CMP_NE:
case IVL_LPM_CMP_NEE:
return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_NEQ);
case IVL_LPM_CMP_EQ:
case IVL_LPM_CMP_EEQ:
return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_EQ);