diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-19 13:54:16 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-22 11:11:33 -0700 |
commit | 5ac65bffc18d1c86e719feb45600a976e397ac76 (patch) | |
tree | c1821bfe6314c14dcf35ee5e936e16f9edd05edc /pp.c | |
parent | 23366835ed707497971521498546af6172771e3e (diff) | |
download | perl-5ac65bffc18d1c86e719feb45600a976e397ac76.tar.gz |
regexec.c: Combine adjacent 'ifs' with same clause
These two instances of 'if (a) { b } if (c) { b } are combined to
if (a || c) { b }
The final instance is made into an else since the 'if' before it does a
break, so that the break is eliminated.
Diffstat (limited to 'pp.c')
0 files changed, 0 insertions, 0 deletions