Changeset 5373


Ignore:
Timestamp:
Oct 18, 2006, 1:12:11 AM (18 years ago)
Author:
Gary Byers
Message:

Allow closed-over addresses in conditional-form, NOT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/compiler/X86/x862.lisp

    r5369 r5373  
    43834383        (x862-branch seg (x862-cd-true xfer))
    43844384        (with-crf-target () crf
    4385           (let* ((ea (x862-lexical-reference-ea form)))
     4385          (let* ((ea (x862-lexical-reference-ea form nil)))
    43864386            (if (and ea (memory-spec-p ea))
    43874387              (x862-compare-ea-to-nil seg crf xfer ea x86::x86-e-bits nil)
     
    68316831(defx862 x862-not not (seg vreg xfer cc form)
    68326832  (multiple-value-bind (cr-bit true-p) (acode-condition-to-x86-cr-bit cc)
    6833     (let* ((ea (x862-lexical-reference-ea form)))
     6833    (let* ((ea (x862-lexical-reference-ea form nil)))
    68346834      (if (and ea (memory-spec-p ea))
    68356835        (x862-compare-ea-to-nil
Note: See TracChangeset for help on using the changeset viewer.