We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f97ebcf commit 84efa6eCopy full SHA for 84efa6e
src/alloc_addresses/mod.rs
@@ -497,9 +497,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
497
// spanning at most range" - so we can't make use of this for
498
// now. Maybe we could also skip over reads/writes that hit the
499
// same bytes, but that's best added together with the stuff above.
500
- shims::trace::AccessEvent::Read(range) => {
501
- reads.push(range)
502
- }
+ shims::trace::AccessEvent::Read(range) => reads.push(range),
503
shims::trace::AccessEvent::Write(range) => {
504
writes.push(range);
505
}
0 commit comments