diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-09 06:26:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 06:26:02 +0000 |
commit | 4351194e8ce94e7078b67a20e5fc92777d6cb3e6 (patch) | |
tree | 7d2027cda96eeb6c16506ca8b1c9df2fe475efa7 /kernel/rtlil.h | |
parent | 83f84afc0b617fe78fb7cfa31fb9d1cd202e22f2 (diff) | |
parent | 53688a24b531adcc99c091f728e9657d16010467 (diff) | |
download | yosys-4351194e8ce94e7078b67a20e5fc92777d6cb3e6.tar.gz yosys-4351194e8ce94e7078b67a20e5fc92777d6cb3e6.tar.bz2 yosys-4351194e8ce94e7078b67a20e5fc92777d6cb3e6.zip |
Merge pull request #2107 from whitequark/flatten-hdlname
flatten: preserve original object names
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 86b4e25b6..f751bdce4 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -682,6 +682,9 @@ struct RTLIL::AttrObject std::string get_src_attribute() const { return get_string_attribute(ID::src); } + + void set_hdlname_attribute(const vector<string> &hierarchy); + vector<string> get_hdlname_attribute() const; }; struct RTLIL::SigChunk |