B::Disassembler.pm
Nicholas Clark [Tue, 17 May 2005 11:28:18 +0000 (12:28 +0100)]
Message-ID: <20050517102817.GD94420@plum.flirble.org>

p4raw-id: //depot/perl@24499

ext/B/B/Disassembler.pm

index c64b973..e1993aa 100644 (file)
@@ -5,7 +5,7 @@
 #      You may distribute under the terms of either the GNU General Public
 #      License or the Artistic License, as specified in the README file.
 
-$B::Disassembler::VERSION = '1.04';
+$B::Disassembler::VERSION = '1.05';
 
 package B::Disassembler::BytecodeStream;
 
@@ -154,12 +154,12 @@ sub GET_IV {
     $Config{ivsize} == 4 ? &GET_I32 : &GET_IV64;
 }
 
-sub B::::GET_PADOFFSET {
-    $Config{ptrsize} == 8 ? &B::GET_IV64 : &B::GET_U32;
+sub GET_PADOFFSET {
+    $Config{ptrsize} == 8 ? &GET_IV64 : &GET_U32;
 }
 
-sub B::::GET_long {
-    $Config{longsize} == 8 ? &B::GET_IV64 : &B::GET_U32;
+sub GET_long {
+    $Config{longsize} == 8 ? &GET_IV64 : &GET_U32;
 }