in reply to Re: Q about module building
in thread Q about module building
The last line gets the following warning from gcc:#define BIT_WITHIN_UV_MASK 0x3F #define BIT0 ((UV)0x8000000000000000) #define BITNO_TO_BITMASK(bitno) (BIT0>>(bitno&BIT_WITHIN_UV_MASK)) SV *mm_array_fetch (mm_array *array, IV index, int prelocked) { UV uv; uv = ... sv = uv & BITNO_TO_BITMASK(index) ? &PL_sv_yes : &PL_sv_no;
Thanks,MMA.xs:463: warning: integer constant is too large for "long" type
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Q about module building
by ikegami (Patriarch) on Feb 27, 2009 at 04:54 UTC |