Changeset 13197
- Timestamp:
- Nov 12, 2009, 11:34:57 AM (15 years ago)
- Location:
- branches/working-0711/ccl
- Files:
-
- 3 edited
-
compiler/nx-basic.lisp (modified) (1 diff)
-
level-1/l1-utils.lisp (modified) (1 diff)
-
library/leaks.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/compiler/nx-basic.lisp
r13070 r13197 537 537 ,@body)))) 538 538 539 (defvar *strict-checking* nil 540 "If true, issues warnings/errors in more cases, e.g. for valid but non-portable code") 541 539 542 540 543 ;; Should be true if compiler warnings UI doesn't use source locations, false if it does. -
branches/working-0711/ccl/level-1/l1-utils.lisp
r13070 r13197 423 423 (let* ((old-value (%sym-global-value var))) 424 424 (unless (eq old-value (%unbound-marker-8)) 425 (if (similar-as-constants-p (%sym-global-value var) value) 425 (if (or (eql old-value value) 426 (and (not *strict-checking*) (similar-as-constants-p old-value value))) 426 427 (return) 427 428 ;; This should really be a cell error, allow options other than -
branches/working-0711/ccl/library/leaks.lisp
r13070 r13197 272 272 (format t "~&~A" i)) 273 273 (format t "~&Freed but not malloced:~%~{~A~%~}" frees) 274 (format t "~&total-malloc-not-freed: ~ ~A ~A free not malloc: ~A"274 (format t "~&total-malloc-not-freed: ~A ~A free not malloc: ~A" 275 275 (/ malloc-sum 1024.0) 276 276 (length mallocs)
Note:
See TracChangeset
for help on using the changeset viewer.
