From 178ff3e7f6f9766f0b1a3e8dcc96e030aea59b15 Mon Sep 17 00:00:00 2001 From: Ruben Undheim Date: Sat, 18 Jun 2016 10:24:21 +0200 Subject: Added support for SystemVerilog packages with localparam definitions --- kernel/rtlil.cc | 2 ++ kernel/rtlil.h | 2 ++ 2 files changed, 4 insertions(+) (limited to 'kernel') diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index bcd87d3ff..9e09d9f04 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -304,6 +304,8 @@ RTLIL::Design::~Design() { for (auto it = modules_.begin(); it != modules_.end(); ++it) delete it->second; + for (auto n : packages) + delete n; } RTLIL::ObjRange RTLIL::Design::modules() diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 940e36ab3..275ba6820 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -18,6 +18,7 @@ */ #include "kernel/yosys.h" +#include "frontends/ast/ast.h" #ifndef RTLIL_H #define RTLIL_H @@ -792,6 +793,7 @@ struct RTLIL::Design int refcount_modules_; dict modules_; + std::vector packages; std::vector selection_stack; dict selection_vars; -- cgit v1.2.3