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
d70cecc2
Commit
d70cecc2
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added NIL for the vop in all the error macros.
parent
5a9b8108
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/assem-rtns.lisp
+5
-5
5 additions, 5 deletions
assembly/mips/assem-rtns.lisp
with
5 additions
and
5 deletions
assembly/mips/assem-rtns.lisp
+
5
−
5
View file @
d70cecc2
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/assem-rtns.lisp,v 1.1
7
1990/0
6/17 20:18:2
0 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/assem-rtns.lisp,v 1.1
8
1990/0
7/06 20:49:3
0 wlott Exp $
;;;
;;;
;;;
;;;
(
in-package
"C"
)
(
in-package
"C"
)
...
@@ -36,11 +36,11 @@
...
@@ -36,11 +36,11 @@
(
dotimes
(
i
(
1-
vm:function-header-code-offset
))
(
dotimes
(
i
(
1-
vm:function-header-code-offset
))
(
inst
word
0
))
(
inst
word
0
))
;; Cause the error.
;; Cause the error.
(
cerror-call
continue
undefined-symbol-error
cname
)
(
cerror-call
nil
continue
undefined-symbol-error
cname
)
continue
continue
(
let
((
not-sym
(
generate-cerror-code
object-not-symbol-error
cname
)))
(
let
((
not-sym
(
generate-cerror-code
nil
object-not-symbol-error
cname
)))
(
test-simple-type
cname
temp
not-sym
t
vm:symbol-header-type
))
(
test-simple-type
cname
temp
not-sym
t
vm:symbol-header-type
))
(
loadw
lexenv
cname
vm:symbol-function-slot
vm:other-pointer-type
)
(
loadw
lexenv
cname
vm:symbol-function-slot
vm:other-pointer-type
)
...
@@ -66,7 +66,7 @@
...
@@ -66,7 +66,7 @@
(
:temp
target-uwp
any-reg
nl2-offset
))
(
:temp
target-uwp
any-reg
nl2-offset
))
(
declare
(
ignore
start
count
))
(
declare
(
ignore
start
count
))
(
let
((
error
(
generate-error-code
invalid-unwind-error
)))
(
let
((
error
(
generate-error-code
nil
invalid-unwind-error
)))
(
inst
beq
block
zero-tn
error
))
(
inst
beq
block
zero-tn
error
))
(
load-symbol-value
cur-uwp
lisp::*current-unwind-protect-block*
)
(
load-symbol-value
cur-uwp
lisp::*current-unwind-protect-block*
)
...
@@ -104,7 +104,7 @@
...
@@ -104,7 +104,7 @@
loop
loop
(
let
((
error
(
generate-error-code
unseen-throw-tag-error
target
)))
(
let
((
error
(
generate-error-code
nil
unseen-throw-tag-error
target
)))
(
inst
beq
catch
zero-tn
error
)
(
inst
beq
catch
zero-tn
error
)
(
inst
nop
))
(
inst
nop
))
...
...
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