This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/tools/miri/src/shims/x86 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ pub(super) trait EvalContextExt<'mir, 'tcx: 'mir>:
144144 // The difference between the com* and ucom* variants is signaling
145145 // of exceptions when either argument is a quiet NaN. We do not
146146 // support accessing the SSE status register from miri (or from Rust,
147- // for that matter), so we treat equally both variants.
147+ // for that matter), so we treat both variants equally .
148148 let res = match unprefixed_name {
149149 "comieq.ss" | "ucomieq.ss" => left == right,
150150 "comilt.ss" | "ucomilt.ss" => left < right,
Original file line number Diff line number Diff line change @@ -640,7 +640,7 @@ pub(super) trait EvalContextExt<'mir, 'tcx: 'mir>:
640640 // The difference between the com* and ucom* variants is signaling
641641 // of exceptions when either argument is a quiet NaN. We do not
642642 // support accessing the SSE status register from miri (or from Rust,
643- // for that matter), so we treat equally both variants.
643+ // for that matter), so we treat both variants equally .
644644 let res = match unprefixed_name {
645645 "comieq.sd" | "ucomieq.sd" => left == right,
646646 "comilt.sd" | "ucomilt.sd" => left < right,
You can’t perform that action at this time.
0 commit comments