Changeset 13188
- Timestamp:
- Nov 10, 2009, 5:17:34 PM (15 years ago)
- Location:
- branches/working-0711/ccl/lisp-kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/lisp-kernel/image.c
r13070 r13188 65 65 int skip = ((int) start[1])+1; 66 66 #else 67 int skip = ((unsigned short)start[1])+1;68 67 extern void update_self_references(LispObj *); 68 extern natural imm_word_count(LispObj); 69 70 natural skip = (natural)imm_word_count(((LispObj)start)+fulltag_misc)+1; 69 71 update_self_references(start); 70 72 #endif … … 91 93 ++start; 92 94 } 95 } 96 if (start > end) { 97 Bug(NULL, "Overran area bounds in relocate_area_contents"); 93 98 } 94 99 } -
branches/working-0711/ccl/lisp-kernel/x86-gc.c
r13070 r13188 28 28 29 29 #ifdef X8632 30 staticinline natural30 inline natural 31 31 imm_word_count(LispObj fn) 32 32 {
Note:
See TracChangeset
for help on using the changeset viewer.
