Changeset 5339


Ignore:
Timestamp:
Oct 13, 2006, 3:50:00 AM (18 years ago)
Author:
Gary Byers
Message:

Change >=-2, <=-2, /=-2 to avoid inlining issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-0/l0-numbers.lisp

    r3884 r5339  
    310310
    311311(defun /=-2 (x y)
    312   (not (=-2 x y)))
     312  (declare (notinline =-2))
     313  (not (= x y)))
    313314
    314315
    315316; true iff (< x y) is false.
    316317(defun >=-2 (x y)
     318  (declare (notinline <-2))
    317319  (not (< x y)))
    318320
     
    320322
    321323(defun <=-2 (x y)
     324  (declare (notinline >-2))
    322325  (not (> x y)))
    323326
Note: See TracChangeset for help on using the changeset viewer.