add variable free status debug

This commit is contained in:
Masato Imai
2022-08-23 10:54:59 +09:00
parent fc2e0feacd
commit d88339c6ee

View File

@ -717,7 +717,11 @@ impl GPSL {
}
}
self.blocks.pop_front();
let p = self.blocks.pop_front();
if let Some(p) = p {
debug!("Free: {}", p.variables.len());
}
return Ok(None);
}