Get rid of (* abc9_{arrival,required} *) entirely
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user