Remove non-ascii characters

This commit is contained in:
Peter Rugg
2023-01-25 16:11:52 +00:00
parent 7d9fdce16a
commit f11156ef9a

View File

@@ -713,9 +713,9 @@ function VnD#(CapFat) incOffsetFat( CapFat cap
// The inRange test // The inRange test
// ---------------- // ----------------
// Conceptually, the inRange test checks the magnitude of 'offset' is less // Conceptually, the inRange test checks the magnitude of 'offset' is less
// then the representable regions size S. This ensures that the inLimits // then the representable region's size S. This ensures that the inLimits
// test result is meaningful. The test succeeds if the absolute value of // test result is meaningful. The test succeeds if the absolute value of
// 'offset' is less than S, that is S < 'offset' < S. This test reduces to a // 'offset' is less than S, that is -S < 'offset' < S. This test reduces to a
// check that there are no significant bits in the high bits of 'offset', // check that there are no significant bits in the high bits of 'offset',
// that is they are all ones or all zeros. // that is they are all ones or all zeros.
CapAddr offsetAddr = offset; CapAddr offsetAddr = offset;