Changeset 14476
- Timestamp:
- Dec 9, 2010, 1:00:41 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/compiler/nx-basic.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/compiler/nx-basic.lisp
r14417 r14476 730 730 (defmacro dbg-assert (form) 731 731 #-debug-code-notes (declare (ignore form)) 732 #+debug-code-notes `(assert ,form)) 732 #+debug-code-notes `(unless ,form (cerror "Ignore assertion failure" 733 "Assertion failure: ~s" ',form))) 733 734 734 735 (defvar *acode-right-margin* 120) … … 757 758 ;; note and not a code note, so need to check for code note explicitly. 758 759 (when (code-note-p note) 759 (dbg-assert ( null (gethash form form->note)))760 (dbg-assert (eq note (gethash form form->note note))) 760 761 (dbg-assert (null (code-note-acode-range note))) 761 762 (setf (gethash form form->note) note))) … … 838 839 839 840 (defun decomp-form (acode) 840 (cond ((nx- nullacode) t)841 ((nx- tacode) nil)841 (cond ((nx-t acode) t) 842 ((nx-null acode) nil) 842 843 (t (let* ((op (car acode)) 843 844 (num (length *next-nx-operators*))
Note:
See TracChangeset
for help on using the changeset viewer.
