summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-07 14:11:42 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-07 14:11:42 +0000
commitdaa2adfd3a5f888cb1c60469c1ec42e215d455bb (patch)
treed15068adf2aec0e7155c303650249ced96348664 /opcode.h
parent2723d2164bbb7a5d9949447f06dde05bf516db63 (diff)
downloadperl-daa2adfd3a5f888cb1c60469c1ec42e215d455bb.tar.gz
pp_hex can be implemented trivially by pp_oct, making pp_hex a mathom.
p4raw-id: //depot/perl@27119
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index 5b73eb6c9a..4541421cbb 100644
--- a/opcode.h
+++ b/opcode.h
@@ -892,7 +892,7 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
MEMBER_TO_FPTR(Perl_pp_log),
MEMBER_TO_FPTR(Perl_pp_sqrt),
MEMBER_TO_FPTR(Perl_pp_int),
- MEMBER_TO_FPTR(Perl_pp_hex),
+ MEMBER_TO_FPTR(Perl_pp_oct), /* Perl_pp_hex */
MEMBER_TO_FPTR(Perl_pp_oct),
MEMBER_TO_FPTR(Perl_pp_abs),
MEMBER_TO_FPTR(Perl_pp_length),