Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
b0a0cbd8
Commit
b0a0cbd8
authored
25 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Quieten some warnings of unreferenced TNs for the non long-float code.
parent
dd43cc9d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/x86/float.lisp
+8
-5
8 additions, 5 deletions
compiler/x86/float.lisp
with
8 additions
and
5 deletions
compiler/x86/float.lisp
+
8
−
5
View file @
b0a0cbd8
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.3
2
1999/1
1/11 16:10:54
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.3
3
1999/1
2/05 16:23:07
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -2144,7 +2144,6 @@
(
:args
(
x
:scs
(
double-reg
)
:target
fr0
))
(
:temporary
(
:sc
double-reg
:offset
fr0-offset
:from
:argument
:to
:result
)
fr0
)
(
:ignore
fr0
)
(
:results
(
y
:scs
(
double-reg
)))
(
:arg-types
double-float
)
(
:result-types
double-float
)
...
...
@@ -2154,6 +2153,7 @@
(
:vop-var
vop
)
(
:save-p
:compute-only
)
(
:node-var
node
)
(
:ignore
fr0
)
(
:generator
5
(
note-this-location
vop
:internal-error
)
(
unless
(
zerop
(
tn-offset
x
))
...
...
@@ -2337,7 +2337,7 @@
(
:note
"inline sin/cos function"
)
(
:vop-var
vop
)
(
:save-p
:compute-only
)
(
:ignore
eax
)
(
:ignore
eax
fr0
)
(
:generator
5
(
note-this-location
vop
:internal-error
)
(
unless
(
zerop
(
tn-offset
x
))
...
...
@@ -2374,7 +2374,7 @@
(
:note
"inline tan function"
)
(
:vop-var
vop
)
(
:save-p
:compute-only
)
(
:ignore
eax
)
(
:ignore
eax
fr0
)
(
:generator
5
(
note-this-location
vop
:internal-error
)
(
case
(
tn-offset
x
)
...
...
@@ -2531,7 +2531,7 @@
(
:note
"inline expm1 function"
)
(
:vop-var
vop
)
(
:save-p
:compute-only
)
(
:ignore
temp
)
(
:ignore
temp
fr0
)
(
:generator
5
(
note-this-location
vop
:internal-error
)
(
unless
(
zerop
(
tn-offset
x
))
...
...
@@ -2805,6 +2805,7 @@
(
:result-types
double-float
)
(
:policy
:fast-safe
)
(
:note
"inline scalbn function"
)
(
:ignore
fr0
)
(
:generator
5
;; Setup x in fr0 and y in fr1
(
sc-case
x
...
...
@@ -2871,6 +2872,7 @@
(
:note
"inline scalb function"
)
(
:vop-var
vop
)
(
:save-p
:compute-only
)
(
:ignore
fr0
)
(
:generator
5
(
note-this-location
vop
:internal-error
)
;; Setup x in fr0 and y in fr1
...
...
@@ -3080,6 +3082,7 @@
(
:note
"inline logb function"
)
(
:vop-var
vop
)
(
:save-p
:compute-only
)
(
:ignore
fr0
)
(
:generator
5
(
note-this-location
vop
:internal-error
)
(
sc-case
x
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment