Melvin Smith <[EMAIL PROTECTED]> wrote:
>
>   For some reason 1 test in pcc.t is failing (the nci call)

Off by one error caused by:

>   -            for (j = 0; j < 4; j++) {

>   +            for (set = 0; set < REGSET_MAX; set++) {

As most loops inside Parrot use the former scheme, I'd rather keep it
then switching to an (it seems) error prone variant "set <= REGSET_MAX"
...

leo

Reply via email to