Skip to content

Commit 891ebd2

Browse files
Update Flag operation debug formatting to include source flag
1 parent f6c6e48 commit 891ebd2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rust/src/low_level_il/operation.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,9 @@ where
10321032
F: FunctionForm,
10331033
{
10341034
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
1035-
f.debug_struct("Flag").finish()
1035+
f.debug_struct("Flag")
1036+
.field("source_flag", &self.source_flag())
1037+
.finish()
10361038
}
10371039
}
10381040

0 commit comments

Comments
 (0)