We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdcec1d commit 04c9016Copy full SHA for 04c9016
1 file changed
langs/a86/printer.rkt
@@ -79,8 +79,8 @@
79
(let ((s (simple-instr->string i)))
80
(if (instruction-annotation i)
81
(if (< (string-length s) 40)
82
- (format "~a~a; ~.a" s (make-string (- 40 (string-length s)) #\space) (instruction-annotation i))
83
- (format "~a ; ~.a" s (instruction-annotation i)))
+ (format "~a~a; ~.s" s (make-string (- 40 (string-length s)) #\space) (instruction-annotation i))
+ (format "~a ; ~.s" s (instruction-annotation i)))
84
s)))
85
86
0 commit comments