comparison src/alloc.c @ 6227:f91d4884806e

(mark_object): Add no-op cast.
author Richard M. Stallman <rms@gnu.org>
date Sun, 06 Mar 1994 22:07:19 +0000
parents 80569adf45e4
children 8372dce85f8a
comparison
equal deleted inserted replaced
6226:d90fbaccf96a 6227:f91d4884806e
1549 for (i = 0; i < size; i++) /* and then mark its elements */ 1549 for (i = 0; i < size; i++) /* and then mark its elements */
1550 { 1550 {
1551 if (i != COMPILED_CONSTANTS) 1551 if (i != COMPILED_CONSTANTS)
1552 mark_object (&ptr1->contents[i]); 1552 mark_object (&ptr1->contents[i]);
1553 } 1553 }
1554 objptr = &ptr1->contents[COMPILED_CONSTANTS]; 1554 /* This cast should be unnecessary, but some Mips compiler complains
1555 (MIPS-ABI + SysVR4, DC/OSx, etc). */
1556 objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS];
1555 goto loop; 1557 goto loop;
1556 } 1558 }
1557 1559
1558 #ifdef MULTI_FRAME 1560 #ifdef MULTI_FRAME
1559 case Lisp_Frame: 1561 case Lisp_Frame: