From 5209a116ffee8cdbbd4fbbc8eda8c3c52293c882 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Thu, 11 Dec 2025 00:44:52 +0100 Subject: [PATCH] rtlil: add case_src to CaseRule (cherry picked from commit a217a5c716afe8a5046d293a33ac4dcdb618ea00) --- kernel/rtlil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/rtlil.h b/kernel/rtlil.h index bbcf58417..014dafcd2 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -2526,6 +2526,7 @@ struct RTLIL::CaseRule : public RTLIL::AttrObject std::vector compare; std::vector actions; std::vector switches; + TwineRef compare_src = Twine::Null; ~CaseRule();