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
4d01ae3b
Commit
4d01ae3b
authored
21 years ago
by
toy
Browse files
Options
Downloads
Patches
Plain Diff
Correct a few typos where format strings weren't given enough args.
parent
5f2e0e5d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/sparc/insts.lisp
+3
-3
3 additions, 3 deletions
compiler/sparc/insts.lisp
with
3 additions
and
3 deletions
compiler/sparc/insts.lisp
+
3
−
3
View file @
4d01ae3b
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/insts.lisp,v 1.4
1
2003/08/
05 16:32:43
toy Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/insts.lisp,v 1.4
2
2003/08/
27 21:09:27
toy Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -735,7 +735,7 @@ about function addresses and register values.")
...
@@ -735,7 +735,7 @@ about function addresses and register values.")
(
defun
cond-move-condition
(
condition-reg
)
(
defun
cond-move-condition
(
condition-reg
)
(
or
(
position
condition-reg
cond-move-condition-registers
)
(
or
(
position
condition-reg
cond-move-condition-registers
)
(
error
"Unknown conditional move condition register: ~S~%"
)))
(
error
"Unknown conditional move condition register: ~S~%"
condition-reg
)))
(
defconstant
cond-move-printer
(
defconstant
cond-move-printer
`
(
:name
cond
:tab
`
(
:name
cond
:tab
...
@@ -792,7 +792,7 @@ about function addresses and register values.")
...
@@ -792,7 +792,7 @@ about function addresses and register values.")
(
defun
register-condition
(
rcond
)
(
defun
register-condition
(
rcond
)
(
or
(
position
rcond
cond-move-integer-conditions
)
(
or
(
position
rcond
cond-move-integer-conditions
)
(
error
"Unknown register condition: ~S~%"
)))
(
error
"Unknown register condition: ~S~%"
rcond
)))
(
disassem:define-instruction-format
(
disassem:define-instruction-format
(
format-4-cond-move-integer
32
:default-printer
cond-move-integer-printer
)
(
format-4-cond-move-integer
32
:default-printer
cond-move-integer-printer
)
...
...
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