Re: Segfault on Win32, the

2003-12-07 Thread Vladimir Lipsky
Some time ago I mentioned I'd been gettin' one more segfault while the Parrot debug mode was on. In fact, it proved to be an effect of the same cause -- we have global resources sharable among interpreters, that we try to free more than once. This time it's encoding_array. If you're going to disabl

Re: Sorry 'bout the object delay

2003-12-07 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > I got mugged by the flu, [ ... ] > [ ... ] Objects'll be the death of me, I swear... I don't hope, that this is anyhow related to my checkins, 'cause: "... IS PROVIDED "AS IS" ... IN NO EVENT ... BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL

Re: rt.cpan.org

2003-12-07 Thread Iain Truskett
* Ricardo Signes <[EMAIL PROTECTED]>: [...] > Yup. I can also log into books.perl.org -- I don't use any > other PAUSE-authing sites. books.perl.org does not auth using PAUSE. We use the auth.perl.org thing which isn't pause based. cheers, -- Iain.

Re: Missing branch instructions?

2003-12-07 Thread Leopold Toetsch
Pete Lomax <[EMAIL PROTECTED]> wrote: > ... only to find there are no such equivalents for ne, gt, and ge. I've added these missing ops now. *But* there are a lot more missing: * all _p_nc?_ic # := eq, ne, lt, le, gt, ge * all _p_sc?_ic * cmp_i_p_nc? * cmp_i_p_sc? And we don't support Perl'

Re: Missing branch instructions?

2003-12-07 Thread Leopold Toetsch
Pete Lomax <[EMAIL PROTECTED]> wrote: > There is an eq_p_i_ic and an eq_p_ic_ic, but not an eq_i_p_ic or an > eq_ic_p_ic. So, I swapped the operands and it worked, but of course > not on an lt statement, so I switched the operands and inverted the > sense, only to find there are no such equivalents