From a976f75fed2920aa3bba38702cc9cdc2e7bd3ab2 Mon Sep 17 00:00:00 2001 From: Coke Date: Wed, 5 Jan 2011 22:32:29 -0500 Subject: [PATCH] Don't use Exporter; speed up pmc2c.pl build of src/pmc/integer.c goes from 2s to .4s (??!?) --- lib/Parrot/Pmc2c/VTable.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Parrot/Pmc2c/VTable.pm b/lib/Parrot/Pmc2c/VTable.pm index 9c2eace919..108452c6ed 100644 --- a/lib/Parrot/Pmc2c/VTable.pm +++ b/lib/Parrot/Pmc2c/VTable.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Storable (); -use Parrot::Vtable; +use Parrot::Vtable (); use Parrot::Pmc2c::Method (); use File::Basename; use Cwd qw(cwd); @@ -19,7 +19,7 @@ sub new { sub build { my ( $self, $filename ) = @_; - my $vtable_table = parse_vtable($filename); + my $vtable_table = Parrot::Vtable::parse_vtable($filename); my ( %method_lookup, @methods, @method_names );