From fd8f01e3172b02ae522989a8a49b2afbd3f340a1 Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Fri, 18 Jul 2008 11:56:00 +0100 Subject: [PATCH] Add IVL_LPM_CMP_GE --- tgt-vhdl/lpm.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tgt-vhdl/lpm.cc b/tgt-vhdl/lpm.cc index 753d23096..0f6ccf051 100644 --- a/tgt-vhdl/lpm.cc +++ b/tgt-vhdl/lpm.cc @@ -246,6 +246,8 @@ static vhdl_expr *lpm_to_expr(vhdl_scope *scope, ivl_lpm_t lpm) return binop_lpm_to_expr(scope, lpm, VHDL_BINOP_MULT); case IVL_LPM_CONCAT: 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_EEQ: return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_EQ); case IVL_LPM_PART_VP: