diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-09-12 11:45:02 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-09-12 11:45:02 -0700 |
commit | 4ea34aaacdf6f76e11a83d5eb2a53ba7e75f7c11 (patch) | |
tree | 4919f2153ad547402f8dcc36421372567cbb34a8 /kernel/consteval.h | |
parent | 6044fff074f026676312f047cfd5a7c862ff987f (diff) | |
download | yosys-4ea34aaacdf6f76e11a83d5eb2a53ba7e75f7c11.tar.gz yosys-4ea34aaacdf6f76e11a83d5eb2a53ba7e75f7c11.tar.bz2 yosys-4ea34aaacdf6f76e11a83d5eb2a53ba7e75f7c11.zip |
SigSet<Cell*> to use stable compare class
Diffstat (limited to 'kernel/consteval.h')
-rw-r--r-- | kernel/consteval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/consteval.h b/kernel/consteval.h index 7a83d28e7..c1c0c45cc 100644 --- a/kernel/consteval.h +++ b/kernel/consteval.h @@ -33,7 +33,7 @@ struct ConstEval SigMap assign_map; SigMap values_map; SigPool stop_signals; - SigSet<RTLIL::Cell*> sig2driver; + SigSet<RTLIL::Cell*, RTLIL::sort_by_name_id<RTLIL::Cell>> sig2driver; std::set<RTLIL::Cell*> busy; std::vector<SigMap> stack; RTLIL::State defaultval; |