summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vhdl/evaluation.adb2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vhdl/evaluation.adb b/src/vhdl/evaluation.adb
index c4727ac..9bcc85e 100644
--- a/src/vhdl/evaluation.adb
+++ b/src/vhdl/evaluation.adb
@@ -2554,6 +2554,8 @@ package body Evaluation is
function Eval_Discrete_Range_Length (Constraint : Iir) return Iir_Int64
is
+ -- We don't want to deal with very large ranges here.
+ pragma Suppress (Overflow_Check);
Res : Iir_Int64;
Left, Right : Iir_Int64;
begin