fix file_count in Debug implementation of IrBlock (#13367)

# Description

Oops.
This commit is contained in:
Devyn Cairns 2024-07-12 19:27:23 -07:00 committed by GitHub
parent 46b5e510ac
commit d42cf55431
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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