[perl #62432] Rakudo segfault when passing/calling sub

2009-01-16 Thread via RT
# New Ticket Created by I Sop # Please include the string: [perl #62432] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=62432 With r35615. Following script to perl6 segfaults: sub yum() { } sub callit(x) { x; }

Re: [perl #62432] Rakudo segfault when passing/calling sub

2009-01-16 Thread Patrick R. Michaud
On Fri, Jan 16, 2009 at 01:43:11AM -0800, I Sop wrote: With r35615. Following script to perl6 segfaults: sub yum() { } sub callit(x) { x; } callit yum; This now responds with an appropriate exception: $ cat x.pl sub yum() { } sub callit(x) { x; } callit yum; $ ./parrot

Re: [perl #48014] [DEPRECATED] PMC union struct

2009-01-16 Thread Christoph Otto
Christoph Otto via RT wrote: I'm running into a snag trying to implement this. It turns out that many lines which use the PMC_x_val macros use them on different types of PMCs, especially parents and children (e.g. FixedPMCArray and ResizablePMCArray). There are also some instances where the

Re: [perl #48014] [DEPRECATED] PMC union struct

2009-01-16 Thread Allison Randal
Christoph Otto via RT wrote: I'm running into a snag trying to implement this. It turns out that many lines which use the PMC_x_val macros use them on different types of PMCs, especially parents and children (e.g. FixedPMCArray and ResizablePMCArray). There are also some instances where the

Re: [perl #41825] [BUG] morph vtable override not working in PIR

2009-01-16 Thread Allison Randal
Andrew Whitworth via RT wrote: Okay, I did some work on this last night, and here's the current status. 1) Modified the behavior of the morph PIR override so that it takes a string in trunk. We previously weren't able to override this method at all, so nobody is used to the old way at the PIR