Hi I am getting a segfault when trying to set the size of a FloatvalArray.
see test patch /Stefan Index: t/pmc/floatvalarray.t =================================================================== RCS file: /cvs/public/parrot/t/pmc/floatvalarray.t,v retrieving revision 1.1 diff -u -r1.1 floatvalarray.t --- t/pmc/floatvalarray.t 21 Apr 2004 15:27:27 -0000 1.1 +++ t/pmc/floatvalarray.t 28 Apr 2004 22:31:35 -0000 @@ -16,7 +16,7 @@ =cut -use Parrot::Test tests => 8; +use Parrot::Test tests => 9; use Test::More; output_is(<<'CODE', <<'OUTPUT', 'creation'); @@ -111,3 +111,11 @@ 3 OUTPUT +output_is(<<'CODE', <<'OUTPUT', 'set array size'); + new P0, .FloatvalArray + set P0, 10 + print "Done\n" + end +CODE +Done +OUTPUT