mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 18:45:34 +00:00
Sync
This commit is contained in:
commit
1dcf75d175
68 changed files with 1270 additions and 879 deletions
12
kernel/log.h
12
kernel/log.h
|
@ -367,13 +367,13 @@ void log_dump_val_worker(RTLIL::IdString v);
|
|||
void log_dump_val_worker(RTLIL::SigSpec v);
|
||||
void log_dump_val_worker(RTLIL::State v);
|
||||
|
||||
template<typename K, typename T, typename OPS> static inline void log_dump_val_worker(dict<K, T, OPS> &v);
|
||||
template<typename K, typename OPS> static inline void log_dump_val_worker(pool<K, OPS> &v);
|
||||
template<typename K, typename T> static inline void log_dump_val_worker(dict<K, T> &v);
|
||||
template<typename K> static inline void log_dump_val_worker(pool<K> &v);
|
||||
template<typename K> static inline void log_dump_val_worker(std::vector<K> &v);
|
||||
template<typename T> static inline void log_dump_val_worker(T *ptr);
|
||||
|
||||
template<typename K, typename T, typename OPS>
|
||||
static inline void log_dump_val_worker(dict<K, T, OPS> &v) {
|
||||
template<typename K, typename T>
|
||||
static inline void log_dump_val_worker(dict<K, T> &v) {
|
||||
log("{");
|
||||
bool first = true;
|
||||
for (auto &it : v) {
|
||||
|
@ -386,8 +386,8 @@ static inline void log_dump_val_worker(dict<K, T, OPS> &v) {
|
|||
log(" }");
|
||||
}
|
||||
|
||||
template<typename K, typename OPS>
|
||||
static inline void log_dump_val_worker(pool<K, OPS> &v) {
|
||||
template<typename K>
|
||||
static inline void log_dump_val_worker(pool<K> &v) {
|
||||
log("{");
|
||||
bool first = true;
|
||||
for (auto &it : v) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue