Skip to content
Snippets Groups Projects
Commit 952c3759 authored by Raymond Toy's avatar Raymond Toy
Browse files

Fix #90: Remove unused FP static symbols on x86

We no longer support x87, so the static symbols for the long float
constants aren't used anymore.  And we don't use `*fp-constant-1d0*`
anywhere, so we can remove the constants for 1f0 and 1d0.
parent e7916afe
No related branches found
No related tags found
No related merge requests found
......@@ -431,17 +431,7 @@
;;; early.
;;;
(defvar *fp-constant-0s0*)
(defvar *fp-constant-1s0*)
(defvar *fp-constant-0d0*)
(defvar *fp-constant-1d0*)
;;; The long-float constants.
(defvar *fp-constant-0l0*)
(defvar *fp-constant-1l0*)
(defvar *fp-constant-pi*)
(defvar *fp-constant-l2t*)
(defvar *fp-constant-l2e*)
(defvar *fp-constant-lg2*)
(defvar *fp-constant-ln2*)
;;; The current alien stack pointer; saved/restored for non-local
;;; exits.
......
......@@ -351,17 +351,7 @@
;; The FP constants
*fp-constant-0d0*
*fp-constant-1d0*
*fp-constant-0s0*
*fp-constant-1s0*
;; Following are all long-floats.
*fp-constant-0l0*
*fp-constant-1l0*
*fp-constant-pi*
*fp-constant-l2t*
*fp-constant-l2e*
*fp-constant-lg2*
*fp-constant-ln2*
;; Multi-process support.
*control-stacks*
......
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