diff options
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 2 |
1 files changed, 2 insertions, 0 deletions
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<RTLIL::IdString, RTLIL::Module*> modules_; + std::vector<AST::AstNode*> packages; std::vector<RTLIL::Selection> selection_stack; dict<RTLIL::IdString, RTLIL::Selection> selection_vars; |