Re: newclass bug, or something

2004-01-05 Thread Leopold Toetsch
Luke Palmer <[EMAIL PROTECTED]> wrote: > The following program segfaults after 510 iterations: > .sub _main > $I0 = 0 > again: > $S1 = "anon" > $S0 = $I0 > inc $I0 > concat $S1, $S0 > newclass $P0, $S1 > find_type $I2, $S1 > p

newclass bug, or something

2004-01-05 Thread Luke Palmer
The following program segfaults after 510 iterations: .sub _main $I0 = 0 again: $S1 = "anon" $S0 = $I0 inc $I0 concat $S1, $S0 newclass $P0, $S1 find_type $I2, $S1 print $I2 print "\n" if $I0 < 1000 goto again