ResultBox migration (stage 0): suppress legacy deprecation warnings in box_trait impls; keep dual handling in VM. Fix verifier Display for SuspiciousBarrierContext. Expose VM stats fields to vm_stats module. CLI core_ci guide and script in place.
This commit is contained in:
@ -589,6 +589,9 @@ impl std::fmt::Display for VerificationError {
|
||||
VerificationError::InvalidBarrierPointer { ptr, block, instruction_index, reason } => {
|
||||
write!(f, "Invalid Barrier pointer {} in block {} at {}: {}", ptr, block, instruction_index, reason)
|
||||
},
|
||||
VerificationError::SuspiciousBarrierContext { block, instruction_index, note } => {
|
||||
write!(f, "Suspicious Barrier context in block {} at {}: {}", block, instruction_index, note)
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user