diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 19:36:06 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 19:36:06 +0000 |
commit | b7783a124ffeaab87679eba041dd9997f4d5372a (patch) | |
tree | af245ee575199fdd19d5d912348560ee4e2f5f53 /op.c | |
parent | e3cf49e2e2df78528afdd14c4a3219cf5059e6eb (diff) | |
download | perl-b7783a124ffeaab87679eba041dd9997f4d5372a.tar.gz |
force_list(), fold_constants() and gen_constant_list() can be static.
p4raw-id: //depot/perl@34924
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2431,7 +2431,7 @@ Perl_jmaybe(pTHX_ OP *o) } OP * -Perl_fold_constants(pTHX_ register OP *o) +S_fold_constants(pTHX_ register OP *o) { dVAR; register OP * VOL curop; @@ -2572,7 +2572,7 @@ Perl_fold_constants(pTHX_ register OP *o) } OP * -Perl_gen_constant_list(pTHX_ register OP *o) +S_gen_constant_list(pTHX_ register OP *o) { dVAR; register OP *curop; @@ -2986,7 +2986,7 @@ Perl_newNULLLIST(pTHX) } OP * -Perl_force_list(pTHX_ OP *o) +S_force_list(pTHX_ OP *o) { if (!o || o->op_type != OP_LIST) o = newLISTOP(OP_LIST, 0, o, NULL); |