mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 17:15:33 +00:00
Get rid of (* abc9_{arrival,required} *) entirely
This commit is contained in:
parent
a6fec9fe60
commit
1ef1ca812b
6 changed files with 531 additions and 652 deletions
|
@ -150,9 +150,10 @@ struct TimingInfo
|
|||
return t;
|
||||
}
|
||||
|
||||
decltype(data)::const_iterator find (RTLIL::IdString module_name) const { return data.find(module_name); }
|
||||
decltype(data)::const_iterator end () const { return data.end(); }
|
||||
int count (RTLIL::IdString module_name) const { return data.count(module_name); }
|
||||
decltype(data)::const_iterator find(RTLIL::IdString module_name) const { return data.find(module_name); }
|
||||
decltype(data)::const_iterator end() const { return data.end(); }
|
||||
int count(RTLIL::IdString module_name) const { return data.count(module_name); }
|
||||
const ModuleTiming& at(RTLIL::IdString module_name) const { return data.at(module_name); }
|
||||
};
|
||||
|
||||
YOSYS_NAMESPACE_END
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue