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
1d3404de
Commit
1d3404de
authored
31 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Changed generic-= and generic-/= to not assume that EQ implies =, because
it doesn't in the case of NaNs.
parent
b35875df
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
assembly/mips/arith.lisp
+3
-5
3 additions, 5 deletions
assembly/mips/arith.lisp
with
3 additions
and
5 deletions
assembly/mips/arith.lisp
+
3
−
5
View file @
1d3404de
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/arith.lisp,v 1.1
2
1993/0
5/07 07:37:27
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/arith.lisp,v 1.1
3
1993/0
6/13 07:10:18
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -289,12 +289,11 @@
...
@@ -289,12 +289,11 @@
#+
gengc
(
:temp
ra
any-reg
ra-offset
)
#+
gengc
(
:temp
ra
any-reg
ra-offset
)
(
:temp
nargs
any-reg
nargs-offset
)
(
:temp
nargs
any-reg
nargs-offset
)
(
:temp
ocfp
any-reg
ocfp-offset
))
(
:temp
ocfp
any-reg
ocfp-offset
))
(
inst
beq
x
y
RETURN-T
)
(
inst
and
temp
x
3
)
(
inst
and
temp
x
3
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
and
temp
y
3
)
(
inst
and
temp
y
3
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
nop
)
(
inst
beq
x
y
RETURN-T
)
(
inst
move
res
null-tn
)
(
inst
move
res
null-tn
)
#+
gengc
#+
gengc
...
@@ -332,12 +331,11 @@
...
@@ -332,12 +331,11 @@
#+
gengc
(
:temp
ra
any-reg
ra-offset
)
#+
gengc
(
:temp
ra
any-reg
ra-offset
)
(
:temp
nargs
any-reg
nargs-offset
)
(
:temp
nargs
any-reg
nargs-offset
)
(
:temp
ocfp
any-reg
ocfp-offset
))
(
:temp
ocfp
any-reg
ocfp-offset
))
(
inst
beq
x
y
RETURN-NIL
)
(
inst
and
temp
x
3
)
(
inst
and
temp
x
3
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
and
temp
y
3
)
(
inst
and
temp
y
3
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
bne
temp
DO-STATIC-FN
)
(
inst
nop
)
(
inst
beq
x
y
RETURN-NIL
)
(
load-symbol
res
t
)
(
load-symbol
res
t
)
#+
gengc
#+
gengc
...
...
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