From e56d6085338a2219c8f8203a0fa523d45669291a Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Mon, 22 Jun 2026 17:45:57 +0100 Subject: [PATCH] Fix expected counts --- test_regress/t/t_opt_const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_opt_const.py b/test_regress/t/t_opt_const.py index e4d50d945..fa2e1cfee 100755 --- a/test_regress/t/t_opt_const.py +++ b/test_regress/t/t_opt_const.py @@ -16,7 +16,7 @@ test.compile(verilator_flags2=["-Wno-UNOPTTHREADS", "-fno-dfg", "--stats", test. test.execute() if test.vlt: - test.file_grep(test.stats, r'Optimizations, Const bit op reduction\s+(\d+)', 50) + test.file_grep(test.stats, r'Optimizations, Const bit op reduction\s+(\d+)', 46) test.file_grep(test.stats, r'SplitVar, packed variables split automatically\s+(\d+)', 1) test.passes()