summaryrefslogtreecommitdiff
path: root/opcode.pl
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-11-05 01:36:17 +0000
committerSteve Peters <steve@fisharerojo.org>2005-11-05 01:36:17 +0000
commitc960fc3b3086016b5cf3008030dd5aa01b2db20d (patch)
tree5f1a5837918aa2b472668295912d44b609ff04c1 /opcode.pl
parente5105eda9ec104fa4cd12906af09da2e3a0c3386 (diff)
downloadperl-c960fc3b3086016b5cf3008030dd5aa01b2db20d.tar.gz
Merge pp_andassign, pp_orassign, and pp_dorassign into pp_and,
pp_or, and pp_defined, respectively. p4raw-id: //depot/perl@26007
Diffstat (limited to 'opcode.pl')
-rwxr-xr-xopcode.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/opcode.pl b/opcode.pl
index 4a099ecdb3..9f12344b70 100755
--- a/opcode.pl
+++ b/opcode.pl
@@ -73,7 +73,9 @@ my @raw_alias = (
fteexec)],
Perl_pp_shmwrite => [qw(shmread msgsnd msgrcv semop)],
Perl_pp_send => ['syswrite'],
- Perl_pp_defined => ['dor'],
+ Perl_pp_defined => [qw(dor dorassign)],
+ Perl_pp_and => ['and'],
+ Perl_pp_or => ['or'],
);
while (my ($func, $names) = splice @raw_alias, 0, 2) {