Skip to content
Snippets Groups Projects
Commit 8c543df3 authored by emarsden's avatar emarsden
Browse files

Add stub definitions for KERNEL:%NUMERATOR and KERNEL:%DENOMINATOR

(needed by the byte interpreter).

Fixes the following bug:

   (defun foo (x) (1+ (numerator x)))

   (let ((c::*byte-compile* t)) (compile 'foo))

   (foo 2/3) => undefined function KERNEL:%NUMERATOR
parent 55c5b06f
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.13 2003/07/02 21:45:33 toy Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.14 2003/07/15 13:46:58 emarsden Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -159,3 +159,12 @@
#-sparc
(defun double-float-bits (x)
(values (double-float-high-bits x) (double-float-low-bits x)))
(defun %numerator (x)
(declare (type ratio x))
(%numerator x))
(defun %denominator (x)
(declare (type ratio x))
(%denominator x))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment