fix file_count in Debug implementation of IrBlock

This commit is contained in:
Devyn Cairns 2024-07-12 19:12:07 -07:00
parent 46b5e510ac
commit 975b1bd901

View File

@ -37,7 +37,7 @@ impl fmt::Debug for IrBlock {
.field("data", &self.data)
.field("comments", &self.comments)
.field("register_count", &self.register_count)
.field("file_count", &self.register_count)
.field("file_count", &self.file_count)
.finish_non_exhaustive()
}
}