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
99f6b49e
Commit
99f6b49e
authored
27 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Value of the t-value parameter was wrong! Remove it and use
load-symbol.
parent
fff343fc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
assembly/x86/arith.lisp
+3
-3
3 additions, 3 deletions
assembly/x86/arith.lisp
compiler/x86/parms.lisp
+3
-4
3 additions, 4 deletions
compiler/x86/parms.lisp
with
6 additions
and
7 deletions
assembly/x86/arith.lisp
+
3
−
3
View file @
99f6b49e
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/x86/arith.lisp,v 1.
3
1997/0
2
/1
0
1
7:06:35
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/x86/arith.lisp,v 1.
4
1997/0
9
/1
5
1
0:40:12
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -221,7 +221,7 @@
(
inst
jmp
eax
)
TRUE
(
inst
mov
res
t-value
)))
(
load-symbol
res
t
)))
)
; eval-when
...
...
@@ -267,7 +267,7 @@
(
inst
jmp
eax
)
RETURN-T
(
inst
mov
res
t-value
))
(
load-symbol
res
t
))
(
define-assembly-routine
(
generic-=
(
:cost
10
)
...
...
This diff is collapsed.
Click to expand it.
compiler/x86/parms.lisp
+
3
−
4
View file @
99f6b49e
...
...
@@ -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/parms.lisp,v 1.
5
1997/09/
08 02:24:47
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/parms.lisp,v 1.
6
1997/09/
15 10:40:10
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -161,11 +161,10 @@
(
defparameter
target-static-space-start
#x05000000
)
(
defparameter
target-dynamic-space-start
#x09000000
)
;;; Given that NIL
and T are
the first things allocated in static space, we
;;;
can
know
their
value
s
at compile time:
;;; Given that NIL
is
the first things allocated in static space, we
;;; know
its
value at compile time:
;;;
(
defparameter
nil-value
#x0500000B
)
(
defparameter
t-value
#x0500002F
)
;;;; Other random constants.
...
...
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