diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-21 12:41:47 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-21 12:41:47 -0700 |
commit | 70ee10b650e01b7b262baa5c6fda934fb860dfce (patch) | |
tree | 9bbaefe8fcb55a17424cfec7e7d0a874cacb1a20 /backends | |
parent | 21fa8972f3d04f717d0d4afbfa252e842c807619 (diff) | |
download | yosys-70ee10b650e01b7b262baa5c6fda934fb860dfce.tar.gz yosys-70ee10b650e01b7b262baa5c6fda934fb860dfce.tar.bz2 yosys-70ee10b650e01b7b262baa5c6fda934fb860dfce.zip |
Stab in the dark with aig_map from dict -> std::map
Diffstat (limited to 'backends')
-rw-r--r-- | backends/aiger/xaiger.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc index 48e902666..caf292d59 100644 --- a/backends/aiger/xaiger.cc +++ b/backends/aiger/xaiger.cc @@ -71,7 +71,7 @@ struct XAigerWriter vector<int> aig_outputs; int aig_m = 0, aig_i = 0, aig_l = 0, aig_o = 0, aig_a = 0; - dict<SigBit, int> aig_map; + std::map<SigBit, int> aig_map; dict<SigBit, int> ordered_outputs; vector<Cell*> box_list; |