Do not pprint as const.

This commit is contained in:
Camille Gillot 2025-12-14 17:30:21 +00:00
parent 8759e5a8c6
commit 60c387afbd

View file

@ -332,7 +332,7 @@ fn pretty_operand(operand: &Operand) -> String {
format!("move {mv:?}")
}
Operand::Constant(cnst) => pretty_mir_const(&cnst.const_),
Operand::RuntimeChecks(checks) => format!("const {checks:?}"),
Operand::RuntimeChecks(checks) => format!("{checks:?}"),
}
}