Skip to content

Commit 84efa6e

Browse files
committed
fmt
1 parent f97ebcf commit 84efa6e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/alloc_addresses/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -497,9 +497,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
497497
// spanning at most range" - so we can't make use of this for
498498
// now. Maybe we could also skip over reads/writes that hit the
499499
// same bytes, but that's best added together with the stuff above.
500-
shims::trace::AccessEvent::Read(range) => {
501-
reads.push(range)
502-
}
500+
shims::trace::AccessEvent::Read(range) => reads.push(range),
503501
shims::trace::AccessEvent::Write(range) => {
504502
writes.push(range);
505503
}

0 commit comments

Comments
 (0)