summaryrefslogtreecommitdiff
path: root/opcode.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-07 17:12:08 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-07 17:12:08 +0000
commit71302fe379907f97d78296ec5f7430559d3a05ca (patch)
tree2476524682451348c6fe00cb99dccd3b17884c47 /opcode.pl
parenta4a772887f4f3b784d817fd0589ea0a4e83d9549 (diff)
downloadperl-71302fe379907f97d78296ec5f7430559d3a05ca.tar.gz
All the trancendental unary operators can be merged into PP_sin
(cos, exp, log, sqrt) p4raw-id: //depot/perl@27124
Diffstat (limited to 'opcode.pl')
-rwxr-xr-xopcode.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/opcode.pl b/opcode.pl
index ff171ac915..fdf07c17be 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -82,6 +82,7 @@ my @raw_alias = (
Perl_pp_index => ['rindex'],
Perl_pp_oct => ['hex'],
Perl_pp_shift => ['pop'],
+ Perl_pp_sin => [qw(cos exp log sqrt)],
);
while (my ($func, $names) = splice @raw_alias, 0, 2) {