Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
d37a3150
by Raymond Toy at 2023-07-22T00:19:38+00:00
-
95dfdcf3
by Raymond Toy at 2023-07-22T00:19:39+00:00
2 changed files:
Changes:
... | ... | @@ -744,7 +744,12 @@ |
744 | 744 | ;; set by a prefix instruction
|
745 | 745 | (or (disassem:dstate-get-prop dstate 'word-width)
|
746 | 746 | *default-operand-size*)))
|
747 | - (princ (schar (symbol-name word-width) 0) stream)))))
|
|
747 | + ;; Make sure the print case is honored when
|
|
748 | + ;; printing out the width.
|
|
749 | + (princ (ecase word-width
|
|
750 | + (:word 'w)
|
|
751 | + (:dword 'd))
|
|
752 | + stream)))))
|
|
748 | 753 | |
749 | 754 | |
750 | 755 | ;;;; Disassembler instruction formats.
|
... | ... | @@ -23,6 +23,7 @@ public domain. |
23 | 23 | * Bug fixes:
|
24 | 24 | * Gitlab tickets:
|
25 | 25 | * ~~#154~~ piglatin translation does not work anymore
|
26 | + * ~~#248~~ Print MOVS instruction with correct case
|
|
26 | 27 | * Other changes:
|
27 | 28 | * Improvements to the PCL implementation of CLOS:
|
28 | 29 | * Changes to building procedure:
|