diff options
| author | Clifford Wolf <clifford@clifford.at> | 2014-07-30 22:04:30 +0200 |
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2014-07-30 22:04:30 +0200 |
| commit | 254148910556d057ec296e4f8c44e92bdb8c09a3 (patch) | |
| tree | fc1ec2ce6e6c0c17bf042e7f0fe44022518600db /kernel | |
| parent | 7daad40ca408732786d46fee8b5485bf45595807 (diff) | |
| download | yosys-254148910556d057ec296e4f8c44e92bdb8c09a3.tar.gz yosys-254148910556d057ec296e4f8c44e92bdb8c09a3.tar.bz2 yosys-254148910556d057ec296e4f8c44e92bdb8c09a3.zip | |
Added techmap CONSTMAP feature
Diffstat (limited to 'kernel')
| -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 d6acb5bcc..7bd75bd1d 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -278,6 +278,9 @@ namespace RTLIL result.push_back(it.second); return result; } + + std::set<T> to_set() const { return *this; } + std::vector<T> to_vector() const { return *this; } }; }; |
