From 815831f3dd94ef4dd9c4503777176ce0fae36b4a Mon Sep 17 00:00:00 2001 From: Reini Urban Date: Mon, 10 Dec 2012 14:19:10 -0600 Subject: [PATCH] [pmc2c] Skip generating orig wrappers for unimplemented methods --- lib/Parrot/Pmc2c/PMC.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Parrot/Pmc2c/PMC.pm b/lib/Parrot/Pmc2c/PMC.pm index 738cefc645..ae71fa1710 100644 --- a/lib/Parrot/Pmc2c/PMC.pm +++ b/lib/Parrot/Pmc2c/PMC.pm @@ -737,6 +737,9 @@ sub post_method_gen { # Skip methods with manual WBs. next if $self->vtable_method_has_manual_wb($name); + # Skip unimplemented methods + next if $self->unimplemented_vtable($name); + $method = $self->get_method($name); #warn "Rewriting " . $self->name . "." . $name;