From dcf9f583151cbeeabbc99e5f2c537090e3c1ee74 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 00:18:42 +0000 Subject: [PATCH 1/2] Bump version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f702b940e..b841c2fa6 100644 --- a/Makefile +++ b/Makefile @@ -154,7 +154,7 @@ ifeq ($(OS), Haiku) CXXFLAGS += -D_DEFAULT_SOURCE endif -YOSYS_VER := 0.45+11 +YOSYS_VER := 0.45+106 # Note: We arrange for .gitcommit to contain the (short) commit hash in # tarballs generated with git-archive(1) using .gitattributes. The git repo From c1205ebc4223928b5f8d1612fe421b48c235b7eb Mon Sep 17 00:00:00 2001 From: Hoa Nguyen Date: Sat, 7 Sep 2024 21:30:58 -0700 Subject: [PATCH 2/2] Initialize area stats in stat pass Currently, the area variables in the stat struct are not initialized. This caused the area stats occasionally being an erroneous value. Signed-off-by: Hoa Nguyen --- passes/cmds/stat.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc index 951a321e8..608505ebf 100644 --- a/passes/cmds/stat.cc +++ b/passes/cmds/stat.cc @@ -44,8 +44,8 @@ struct statdata_t #define X(_name) unsigned int _name; STAT_INT_MEMBERS #undef X - double area; - double sequential_area; + double area = 0; + double sequential_area = 0; string tech; std::map techinfo;