On Tue Sep 16 18:20:36 2008, amosrobinson wrote:
> No segfaults here either, with your PIR. (r31173, vanilla ubuntu)
>
> On Tue Sep 02 12:45:34 2008, tene wrote:
> > I don't get a segfault when running the test case without the 'end'
> > opcode. Can anyone else confirm if this still segfaults?
>
Here's yet another updated version (this time for the exception handler)
of the test that doesn't segfault, but still generates incorrect output
(generates both an OK line and a NOK line)
.sub main :main
.local pmc type
newclass type, 'Parent'
.local pmc obj, exception
.local string message
message = 'no error'
push_eh handler
obj = new 'Parent'
print 'not '
pop_eh
goto finally
handler:
.get_results(exception)
message = exception
finally:
print "ok #"
say message
.end
.namespace ['Parent']
.sub 'init' :vtable
die 'test exception from init vtable'
.end
--
Will "Coke" Coleda