kernel: include "kernel/constids.inc" instead of "constids.inc"
authorEddie Hung <eddie@fpgeh.com>
Thu, 9 Apr 2020 16:14:03 +0000 (09:14 -0700)
committerEddie Hung <eddie@fpgeh.com>
Thu, 9 Apr 2020 16:14:03 +0000 (09:14 -0700)
kernel/rtlil.cc
kernel/rtlil.h
kernel/yosys.cc

index 00c116115372d1059589de289588d7a6e17ccfb7..64fa531de2fc3ed91412c4d00d4b72f364edf08e 100644 (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;
index 7279835ea35803d61321c4e379a59471dcaf0d88..c90cdb971d12bc6765343c6299817459ab3a4da6 100644 (file)
@@ -377,7 +377,7 @@ namespace RTLIL
 
        namespace ID {
 #define X(_id) extern IdString _id;
-#include "constids.inc"
+#include "kernel/constids.inc"
 #undef X
        };
 
index 380f7030bd54a88e48cea5f5fe4f88803d18fb12..6009d6647baebfd7e04cd89ff566e000bcd8dad7 100644 (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