diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-09-19 15:50:55 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-09-19 15:50:55 +0200 |
commit | 00964f2f618d241a2e5cd32f4e7dbbcf55de4fb4 (patch) | |
tree | ed21e65940902aaee63449509555255620383996 /kernel/rtlil.h | |
parent | 309623ff177f2538a4c529dbc025374008d85880 (diff) | |
download | yosys-00964f2f618d241a2e5cd32f4e7dbbcf55de4fb4.tar.gz yosys-00964f2f618d241a2e5cd32f4e7dbbcf55de4fb4.tar.bz2 yosys-00964f2f618d241a2e5cd32f4e7dbbcf55de4fb4.zip |
Initialize RTLIL::Const from std::vector<bool>
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index c48837691..a0ae8f082 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -428,7 +428,8 @@ struct RTLIL::Const Const(std::string str); Const(int val, int width = 32); Const(RTLIL::State bit, int width = 1); - Const(std::vector<RTLIL::State> bits) : bits(bits) { flags = CONST_FLAG_NONE; }; + Const(const std::vector<RTLIL::State> &bits) : bits(bits) { flags = CONST_FLAG_NONE; }; + Const(const std::vector<bool> &bits); bool operator <(const RTLIL::Const &other) const; bool operator ==(const RTLIL::Const &other) const; |