projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9572928
)
Disassemble: print the size into the right stream.
author
Stas Boukarev
<stassats@gmail.com>
Mon, 15 Apr 2013 19:50:12 +0000
(23:50 +0400)
committer
Stas Boukarev
<stassats@gmail.com>
Mon, 15 Apr 2013 19:50:12 +0000
(23:50 +0400)
Print the newly introduced size information to the provided stream,
not to *standard-output*.
Reported by Jan Moringen.
src/compiler/target-disassem.lisp
patch
|
blob
|
history
diff --git
a/src/compiler/target-disassem.lisp
b/src/compiler/target-disassem.lisp
index
5473481
..
dc23874
100644
(file)
--- a/
src/compiler/target-disassem.lisp
+++ b/
src/compiler/target-disassem.lisp
@@
-1428,7
+1428,7
@@
(type stream stream)
(type disassem-state dstate))
(unless (null segments)
- (format t "~&; Size: ~a bytes"
+ (format stream "~&; Size: ~a bytes"
(reduce #'+ segments :key #'seg-length))
(let ((first (car segments))
(last (car (last segments))))