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
363fbc57
Commit
363fbc57
authored
33 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed to install the correct instruction on non-mips machines instead of
always installing a mips break instruction.
parent
06712765
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
ldb/breakpoint.c
+8
-1
8 additions, 1 deletion
ldb/breakpoint.c
with
8 additions
and
1 deletion
ldb/breakpoint.c
+
8
−
1
View file @
363fbc57
...
@@ -38,7 +38,14 @@ inst breakpoint_install(code_obj, pc_offset)
...
@@ -38,7 +38,14 @@ inst breakpoint_install(code_obj, pc_offset)
lispobj
code_obj
;
lispobj
code_obj
;
int
pc_offset
;
int
pc_offset
;
{
{
return
swap_insts
(
code_obj
,
pc_offset
,
(
trap_Breakpoint
<<
16
)
|
0xd
);
return
swap_insts
(
code_obj
,
pc_offset
,
#ifdef mips
(
trap_Breakpoint
<<
16
)
|
0xd
#endif
#ifdef sparc
trap_Breakpoint
#endif
);
}
}
void
breakpoint_remove
(
code_obj
,
pc_offset
,
orig_inst
)
void
breakpoint_remove
(
code_obj
,
pc_offset
,
orig_inst
)
...
...
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