3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

Limit size of log_signal buffer to 100 elements

This commit is contained in:
Clifford Wolf 2014-08-02 15:52:21 +02:00
parent e590ffc84d
commit 08392aad8f
2 changed files with 9 additions and 2 deletions

View file

@ -74,7 +74,7 @@ namespace RTLIL
struct IdString
{
// the global string cache
// the global id string cache
struct char_ptr_cmp {
bool operator()(const char *a, const char *b) {
@ -134,7 +134,7 @@ namespace RTLIL
global_free_idx_list_.push_back(idx);
}
// The actual IdString objects just is a single int
// the actual IdString object is just is a single int
int index_;