Stephane Peiry <[EMAIL PROTECTED]> wrote:
> This patch implements the inc_i and dec_i ops (cf. math.ops), for the
> Sun/Sparc JIT core.
Thanks, applied.
leo
# New Ticket Created by Stephane Peiry
# Please include the string: [perl #26201]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org:80/rt3/Ticket/Display.html?id=26201 >
This patch implements the inc_i and dec_i ops (cf. math.ops), for the Sun/Sparc
J
On Sun, May 19, 2002 at 06:01:56PM +0100, Nicholas Clark wrote:
>
> Seriously though - is it possible to automate testing how many ops don't
> have tests? That way we could have a test that looked for untested ops, and
> failed if any weren't tested.
> I guess it couldn't easily be very sophistic
>Net result is Good.
>
>[If it wasn't clear, thanks for this, thanks for all the other good work
>you've
>done on parrot]
Thank you.
>Seriously though - is it possible to automate testing how many ops don't
>have tests? That way we could have a test that looked for untested ops, and
>failed if
On Sun, May 19, 2002 at 01:39:30AM -0400, Melvin Smith wrote:
> Filled in some missing holes:
> -Implement PMC inc/dec functions and add ops to engine.
> 'inc P0, 5' is faster than 'set P0, P1, 5' which uses a vtable.
> -Corrected 'inc Nx, Ny' to 'i
Filled in some missing holes:
-Implement PMC inc/dec functions and add ops to engine.
'inc P0, 5' is faster than 'set P0, P1, 5' which uses a vtable.
-Corrected 'inc Nx, Ny' to 'inc Nx, Iy' as per the PDD
-Added missing 'add Nx, Ny, Iz' op
Upda
I think the inc/dec op (NUM, NUM) should be (NUM, INT)
While I'm adding the PMC support for inc/dec I'll
fix that, unless I'm wrong. INC/DEC by a NUM is not
in the PDD.
-Melvin