Joshua Gatcomb <[EMAIL PROTECTED]> wrote:

> Before I posted, I updated again with the latest
> checkout and saw that I am still having the problem.
> It has been about an hour since you said it was fixed
> and I am not seeing it.  Is there some CVS trickery I
> should be doing?

Dunno. You can follow CVS updates at the cvs mailing list or at
the news group perl.cvs.parrot.

It was this 1-liner check in below. "make testj" runs fine now.

> cvsuser     04/05/10 07:48:52

>   Modified:    build_tools jit2h.pl
>   Log:
>   mmd_vtables 10 - fix JIT_i386 - skip MMD_BXOR
>
>   Revision  Changes    Path
>   1.62      +2 -1      parrot/build_tools/jit2h.pl
>
>   Index: jit2h.pl
>  ===================================================================
>   RCS file: /cvs/public/parrot/build_tools/jit2h.pl,v
>   retrieving revision 1.61
>   retrieving revision 1.62
>   diff -u -w -r1.61 -r1.62
>   --- jit2h.pl        26 Apr 2004 17:03:08 -0000      1.61
>   +++ jit2h.pl        10 May 2004 14:48:51 -0000      1.62
>   @@ -1,6 +1,6 @@
>    #! perl -w
>    # Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
>   -# $Id: jit2h.pl,v 1.61 2004/04/26 17:03:08 leo Exp $
>   +# $Id: jit2h.pl,v 1.62 2004/05/10 14:48:51 leo Exp $
>
>    =head1 NAME
>
>   @@ -208,6 +208,7 @@
>        my $i = 0;
>        $vjit++;
>        for my $entry (@{$vtable}) {
>   +   next if  $entry->[4] =~ /MMD_BXOR/;  # TODO all
>       return $i if ($entry->[1] eq $meth);
>       $i++;
>        }

leo

Reply via email to