debugging log message for liveins

This commit is contained in:
Chris Fallin
2021-05-18 12:14:59 -07:00
parent 8e0d0f1de0
commit 4389f16156

View File

@@ -987,6 +987,10 @@ impl<'a, F: Function> Env<'a, F> {
.next()
.is_some()
{
log::debug!(
"non-empty liveins to entry block: {:?}",
self.liveins[self.func.entry_block().index()]
);
return Err(RegAllocError::EntryLivein);
}