3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00

Merge pull request #1858 from YosysHQ/eddie/fix1856

kernel: include "kernel/constids.inc"
This commit is contained in:
Eddie Hung 2020-04-09 14:23:47 -07:00 committed by GitHub
commit 371af7da38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 25 additions and 3 deletions

View file

@ -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;

View file

@ -377,7 +377,7 @@ namespace RTLIL
namespace ID {
#define X(_id) extern IdString _id;
#include "constids.inc"
#include "kernel/constids.inc"
#undef X
};

View file

@ -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