At 09:02 AM 9/14/2001 -0500, Brian Wheeler wrote:
>I've tracked it down to string problems.
Might not be just string problems. There was a change to memory.c that
caused the memory allocations to round addresses down, not up. Sync up and
try it again.
Da
I've tracked it down to string problems.
Looks like:
init_bytecode(program_code);
calls
read_constants_table(&program_code);
calls
Parrot_string_constants[i++] = string_make(*program_code /* ouch */,
buflen, encoding, flags, type);
calls
string_compute_strlen(s);