Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
518834b9
Commit
518834b9
authored
Nov 18, 1992
by
wlott
Browse files
Only try to generate a disassembly when making a trace file if the
disassembler has been set up for the backend we are using.
parent
48abc5e7
Changes
1
Show whitespace changes
Inline
Side-by-side
compiler/main.lisp
View file @
518834b9
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.7
6
1992/
09/23 17:09:48 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.7
7
1992/
11/18 23:33:54 wlott
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -290,7 +290,8 @@
(
length
trace-table
fixups
)
(
generate-code
component
)
(
when
*compiler-trace-output*
(
when
(
and
*compiler-trace-output*
(
backend-disassem-params
*backend*
))
(
format
*compiler-trace-output*
"~|~%Disassembly of code for ~S~2%"
component
)
(
disassem:disassemble-assem-segment
*code-segment*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment