diff options
| author | Eddie Hung <eddie@fpgeh.com> | 2020-04-09 14:23:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-09 14:23:47 -0700 |
| commit | 371af7da381e9d17e4475cb0599865f7bea5a632 (patch) | |
| tree | b1d667484c8db5feda7bc345b8b7c10d154fd4cf /kernel | |
| parent | 516857f3ba662f467d56df562eeca9ed214ac702 (diff) | |
| parent | f11dd6e20838bce1b1fa8e085570d2126484d10f (diff) | |
| download | yosys-371af7da381e9d17e4475cb0599865f7bea5a632.tar.gz yosys-371af7da381e9d17e4475cb0599865f7bea5a632.tar.bz2 yosys-371af7da381e9d17e4475cb0599865f7bea5a632.zip | |
Merge pull request #1858 from YosysHQ/eddie/fix1856
kernel: include "kernel/constids.inc"
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/rtlil.cc | 2 | ||||
| -rw-r--r-- | kernel/rtlil.h | 2 | ||||
| -rw-r--r-- | kernel/yosys.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 6a7eba2fa..d9003f28c 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -42,7 +42,7 @@ int RTLIL::IdString::last_created_idx_ptr_; #endif #define X(_id) IdString RTLIL::ID::_id; -#include "constids.inc" +#include "kernel/constids.inc" #undef X dict<std::string, std::string> RTLIL::constpad; diff --git a/kernel/rtlil.h b/kernel/rtlil.h index fb65f7a03..17f038e36 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -377,7 +377,7 @@ namespace RTLIL namespace ID { #define X(_id) extern IdString _id; -#include "constids.inc" +#include "kernel/constids.inc" #undef X }; diff --git a/kernel/yosys.cc b/kernel/yosys.cc index 380f7030b..6009d6647 100644 --- a/kernel/yosys.cc +++ b/kernel/yosys.cc @@ -516,7 +516,7 @@ void yosys_setup() already_setup = true; #define X(_id) RTLIL::ID::_id = "\\" # _id; -#include "constids.inc" +#include "kernel/constids.inc" #undef X #ifdef WITH_PYTHON |
