Changeset 5196
- Timestamp:
- Sep 11, 2006, 8:31:15 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/compiler/X86/x862.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/compiler/X86/x862.lisp
r5195 r5196 6241 6241 ;;; Return T if form is declare to be something that couldn't be a fixnum. 6242 6242 (defun x862-explicit-non-fixnum-type-p (form) 6243 ( or (x862-form-typep form 'float)6244 (x862-form-typep form 'complex)6245 (x862-form-typep form 'ratio)6246 (x862-form-typep form 'bignum)))6243 (let* ((type (x862-form-type form)) 6244 (target-fixnum-type (nx-target-type 'fixnum))) 6245 (and (not (subtypep type target-fixnum-type)) 6246 (not (subtypep target-fixnum-type type))))) 6247 6247 6248 6248 (defun x862-inline-add2 (seg vreg xfer form1 form2)
Note:
See TracChangeset
for help on using the changeset viewer.
