wording tweaks
This commit is contained in:
parent
91ef03bf2f
commit
3e21c1fc56
@ -144,7 +144,7 @@ fn emulate_x86_sse_intrinsic(
|
||||
// The difference between the com* and ucom* variants is signaling
|
||||
// of exceptions when either argument is a quiet NaN. We do not
|
||||
// support accessing the SSE status register from miri (or from Rust,
|
||||
// for that matter), so we treat equally both variants.
|
||||
// for that matter), so we treat both variants equally.
|
||||
let res = match unprefixed_name {
|
||||
"comieq.ss" | "ucomieq.ss" => left == right,
|
||||
"comilt.ss" | "ucomilt.ss" => left < right,
|
||||
|
@ -640,7 +640,7 @@ enum ShiftOp {
|
||||
// The difference between the com* and ucom* variants is signaling
|
||||
// of exceptions when either argument is a quiet NaN. We do not
|
||||
// support accessing the SSE status register from miri (or from Rust,
|
||||
// for that matter), so we treat equally both variants.
|
||||
// for that matter), so we treat both variants equally.
|
||||
let res = match unprefixed_name {
|
||||
"comieq.sd" | "ucomieq.sd" => left == right,
|
||||
"comilt.sd" | "ucomilt.sd" => left < right,
|
||||
|
Loading…
Reference in New Issue
Block a user