rewrap text to save lines
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 22 Mar 2023 21:45:41 +0000 (14:45 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 22 Mar 2023 21:45:41 +0000 (14:45 -0700)
openpower/sv/rfc/ls006.mdwn

index 3531cde823e03f9ba69588507e0151ddf4a2e541..ca5bacd977db36dfc09909c15a0fea9f7068d3b6 100644 (file)
@@ -501,12 +501,10 @@ Section 7.1 of the ECMAScript / JavaScript
                 result <- si64_CONVERT_FROM_BFP(range_max)
         default:  # JavaScript semantics
             # CVM = 6, 7 are illegal instructions
-
-            # this works because the largest type we try to
-            # convert from has 53 significand bits, and the
-            # largest type we try to convert to has 64 bits,
-            # and the sum of those is strictly less than the
-            # 128 bits of the intermediate result.
+            # this works because the largest type we try to convert from has
+            # 53 significand bits, and the largest type we try to convert to
+            # has 64 bits, and the sum of those is strictly less than the 128
+            # bits of the intermediate result.
             limit <- bfp_CONVERT_FROM_UI128([1] * 128)
             if IsInf(rnd) or IsNaN(rnd) then
                 result <- [0] * 64
@@ -550,9 +548,7 @@ Section 7.1 of the ECMAScript / JavaScript
 Convert from 32/64-bit float in FRB to a unsigned/signed 32/64-bit integer
 in RT, with the conversion overflow/rounding semantics following the
 chosen `CVM` value, following the usual 32-bit float in 64-bit float
-format.
-
-`FPSCR` is modified and exceptions are raised as usual.
+format. `FPSCR` is modified and exceptions are raised as usual.
 
 Both of these instructions have an Rc=1 mode which sets CR0 in the normal
 way for any instructions producing a GPR result.  Additionally, when OE=1,