3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

kernel: separate IdString::put_reference() out to help inlining

This commit is contained in:
Eddie Hung 2020-03-12 14:42:07 -07:00
parent 4a8cecf03e
commit 6d4f01c3fa

View file

@ -235,7 +235,10 @@ namespace RTLIL
return; return;
log_assert(refcount == 0); log_assert(refcount == 0);
free_reference(idx);
}
static inline void free_reference(int idx)
{
if (yosys_xtrace) { if (yosys_xtrace) {
log("#X# Removed IdString '%s' with index %d.\n", global_id_storage_.at(idx), idx); log("#X# Removed IdString '%s' with index %d.\n", global_id_storage_.at(idx), idx);
log_backtrace("-X- ", yosys_xtrace-1); log_backtrace("-X- ", yosys_xtrace-1);