Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
8674b2d2
Commit
8674b2d2
authored
Nov 10, 2013
by
Raymond Toy
Browse files
Print out the value of the non-zero word.
parent
20ee8ef2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lisp/gencgc.c
View file @
8674b2d2
...
...
@@ -1194,8 +1194,8 @@ gc_alloc_new_region(int nbytes, int unboxed, struct alloc_region *alloc_region)
for
(
p
=
(
int
*
)
alloc_region
->
start_addr
;
p
<
(
int
*
)
alloc_region
->
end_addr
;
p
++
)
if
(
*
p
!=
0
)
fprintf
(
stderr
,
"** new region not zero @ %lx
\n
"
,
(
unsigned
long
)
p
);
fprintf
(
stderr
,
"** new region not zero @
%lx:
%lx
\n
"
,
(
unsigned
long
)
p
,
*
p
);
}
/* Setup the pages. */
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment