Changeset 142 for trunk/orca/ovalue.c
- Timestamp:
- 05/09/06 22:54:53 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/ovalue.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/ovalue.c
r140 r142 1561 1561 OR_NATIVE( orEitherNative ) 1562 1562 { 1563 OValue* blkArg = a1 + 2; ;1563 OValue* blkArg = a1 + 2; 1564 1564 if( a1->type != OT_NONE ) 1565 1565 { … … 2970 2970 int vi; 2971 2971 2972 orRefAvailErr( 3 ) 2973 orRefPush( OT_BLOCK, a1->index ); 2972 blkN = a1->index; 2973 2974 orRefAvailErr( 2 ) 2975 orRefPush( OT_BLOCK, blkN ); 2976 2974 2977 rblk = orMakeBlock(0); 2975 2976 2978 nblkN = orBlockN(rblk); 2977 blkN = a1->index; 2978 blk = orB LOCK( a1);2979 2980 blk = orBlockPtr( blkN ); 2979 2981 used = blk->used; 2980 2982 vi = a1->series.it; 2981 2983 2982 orRefPush( OT_BLOCK, blkN );2983 2984 orRefPush( OT_BLOCK, nblkN ); 2984 2985 … … 3000 3001 } 3001 3002 3002 orRefPop( 3);3003 orRefPop( 2 ); 3003 3004 orResultBLOCK( nblkN ); 3004 3005 } … … 4365 4366 orRefPush( OT_BLOCK, ctx.vblkN ); 4366 4367 4368 // Initialize values for GC. 4369 it = vblk->values; 4367 4370 next = vblk->values + total; 4371 while( it != next ) 4372 { 4373 orSetTF( it, OT_NONE ); 4374 ++it; 4375 } 4376 4368 4377 orSetTF( next, OT_UNSET ); 4369 4378 next->RECURSE_COUNT = 0;
