Commit 75dfbc16 authored by Peter Maydell's avatar Peter Maydell Committed by Stefan Hajnoczi
Browse files

linux-user/arm/nwfpe/fpopcode.h: Fix non-UTF-8 characters



Fix some stray non-UTF-8 characters used in some ASCII art tables
by converting them to plain ASCII '|' instead.

Reviewed-by: default avatarStefan Weil <sw@weilnetz.de>
Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Signed-off-by: default avatarStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
parent 7ff60e15
Loading
Loading
Loading
Loading
+17 −17
Original line number Diff line number Diff line
@@ -75,11 +75,11 @@ TABLE 1
+-------------------------+---+---+---------+---------+
|  Precision              | u | v | FPSR.EP | length  |
+-------------------------+---+---+---------+---------+
| Single                  | 0  0 |    x    | 1 words |
| Double                  | 1  1 |    x    | 2 words |
| Extended                | 1  1 |    x    | 3 words |
| Packed decimal          | 1  1 |    0    | 3 words |
| Expanded packed decimal | 1  1 |    1    | 4 words |
| Single                  | 0 | 0 |    x    | 1 words |
| Double                  | 1 | 1 |    x    | 2 words |
| Extended                | 1 | 1 |    x    | 3 words |
| Packed decimal          | 1 | 1 |    0    | 3 words |
| Expanded packed decimal | 1 | 1 |    1    | 4 words |
+-------------------------+---+---+---------+---------+
Note: x = don't care
*/
@@ -89,10 +89,10 @@ TABLE 2
+---+---+---------------------------------+
| w | x | Number of registers to transfer |
+---+---+---------------------------------+
| 0  1 |  1                              |
| 1  0 |  2                              |
| 1  1 |  3                              |
| 0  0 |  4                              |
| 0 | 1 |  1                              |
| 1 | 0 |  2                              |
| 1 | 1 |  3                              |
| 0 | 0 |  4                              |
+---+---+---------------------------------+
*/

@@ -153,10 +153,10 @@ TABLE 5
+-------------------------+---+---+
|  Rounding Precision     | e | f |
+-------------------------+---+---+
| IEEE Single precision   | 0  0 |
| IEEE Double precision   | 0  1 |
| IEEE Extended precision | 1  0 |
| undefined (trap)        | 1  1 |
| IEEE Single precision   | 0 | 0 |
| IEEE Double precision   | 0 | 1 |
| IEEE Extended precision | 1 | 0 |
| undefined (trap)        | 1 | 1 |
+-------------------------+---+---+
*/

@@ -165,10 +165,10 @@ TABLE 5
+---------------------------------+---+---+
|  Rounding Mode                  | g | h |
+---------------------------------+---+---+
| Round to nearest (default)      | 0  0 |
| Round toward plus infinity      | 0  1 |
| Round toward negative infinity  | 1  0 |
| Round toward zero               | 1  1 |
| Round to nearest (default)      | 0 | 0 |
| Round toward plus infinity      | 0 | 1 |
| Round toward negative infinity  | 1 | 0 |
| Round toward zero               | 1 | 1 |
+---------------------------------+---+---+
*/