mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-01 13:39:30 +00:00
Merge pull request #5396 from akashlevy/pyosys_fix
BUGFIX: pyosys cannot parse header with omitted function args
This commit is contained in:
commit
69770a844e
1 changed files with 2 additions and 2 deletions
|
@ -1244,8 +1244,8 @@ private:
|
||||||
public:
|
public:
|
||||||
SigSpec() : width_(0), hash_(0) {}
|
SigSpec() : width_(0), hash_(0) {}
|
||||||
SigSpec(std::initializer_list<RTLIL::SigSpec> parts);
|
SigSpec(std::initializer_list<RTLIL::SigSpec> parts);
|
||||||
SigSpec(const SigSpec &) = default;
|
SigSpec(const SigSpec &value) = default;
|
||||||
SigSpec(SigSpec &&) = default;
|
SigSpec(SigSpec &&value) = default;
|
||||||
SigSpec(const RTLIL::Const &value);
|
SigSpec(const RTLIL::Const &value);
|
||||||
SigSpec(RTLIL::Const &&value);
|
SigSpec(RTLIL::Const &&value);
|
||||||
SigSpec(const RTLIL::SigChunk &chunk);
|
SigSpec(const RTLIL::SigChunk &chunk);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue