From ff766899b09a94fd8f566cdca5862e85344293cc Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Tue, 2 Sep 2008 19:07:38 +0100 Subject: [PATCH] Add IVL_LPM_CMP_GT --- tgt-vhdl/lpm.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tgt-vhdl/lpm.cc b/tgt-vhdl/lpm.cc index 22dd53394..9213cd24c 100644 --- a/tgt-vhdl/lpm.cc +++ b/tgt-vhdl/lpm.cc @@ -241,6 +241,8 @@ 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_GT: + return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_GT); case IVL_LPM_CMP_EQ: case IVL_LPM_CMP_EEQ: return rel_lpm_to_expr(scope, lpm, VHDL_BINOP_EQ);