From 8b6b111541aa5859137eb87763727c48ce3dcbea Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Fri, 18 Jul 2008 11:58:26 +0100 Subject: [PATCH] Add IVL_LPM_CMP_EQ --- tgt-vhdl/lpm.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tgt-vhdl/lpm.cc b/tgt-vhdl/lpm.cc index 0f6ccf051..4f097b893 100644 --- a/tgt-vhdl/lpm.cc +++ b/tgt-vhdl/lpm.cc @@ -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: