DISASSEMBLE should not always try to dump the data file.

This commit is contained in:
Juan Jose Garcia Ripoll 2011-07-27 21:56:10 +02:00
parent 24ffd8065c
commit 2b3c328777

View file

@ -854,7 +854,8 @@ from the C language code. NIL means \"do not create the file\"."
(ctop-write (compute-init-name "foo" :kind :fasl)
(if h-file h-file "")
(if data-file data-file ""))
(data-c-dump data-file))
(when data-file
(data-c-dump data-file)))
(setf (symbol-function 'T3LOCAL-FUN) t3local-fun)
(when h-file (close *compiler-output2*)))))
nil)