| Commit message (Expand) | Author | Age | Files | Lines |
* | op.c: Remove unused THX param | Father Chrysostomos | 2017-07-02 | 1 | -3/+3 |
* | S_gen_constant_list(): initialise si_stack_hwm | David Mitchell | 2017-06-26 | 1 | -0/+3 |
* | [perl #131627] Fix multideref for $x{qw/a/->$*} | Dagfinn Ilmari Mannsåker | 2017-06-22 | 1 | -2/+2 |
* | make OP_REF support boolean context | David Mitchell | 2017-06-05 | 1 | -0/+6 |
* | Add support for deleting key/value slices (RT#131328) | Dagfinn Ilmari Mannsåker | 2017-06-02 | 1 | -4/+4 |
* | op.c: Add comment | Karl Williamson | 2017-02-19 | 1 | -1/+1 |
* | [perl #130815] fix ck_return null-pointer deref on malformed code | Aaron Crane | 2017-02-19 | 1 | -1/+1 |
* | Moving variables to their innermost scope. | Andy Lester | 2017-02-18 | 1 | -3/+4 |
* | pp_multideref: tweak an assertion | David Mitchell | 2017-02-18 | 1 | -1/+7 |
* | Improve handling pattern compilation errors | Karl Williamson | 2017-02-14 | 1 | -0/+5 |
* | (perl #130705) don't convert match with argument to qr | Tony Cook | 2017-02-08 | 1 | -2/+2 |
* | multideref: handle both OPpLVAL_INTRO,OPpDEREF | David Mitchell | 2017-02-07 | 1 | -0/+15 |
* | fix range op under aborted constant folding | Zefram | 2017-01-27 | 1 | -0/+6 |
* | handle op_pv better in op_clear() and op_dump() | David Mitchell | 2017-01-24 | 1 | -2/+3 |
* | avoid sort assert failure after compile fail | David Mitchell | 2017-01-23 | 1 | -2/+3 |
* | handle errors in gen_constant_list | Zefram | 2017-01-22 | 1 | -9/+62 |
* | add S_process_optree() function to op.c | David Mitchell | 2017-01-17 | 1 | -42/+48 |
* | my() in a false conditional will be fatal in Perl 5.30 | Abigail | 2017-01-16 | 1 | -1/+2 |
* | [perl #130546] Restore delete-scalar-slice warning | Father Chrysostomos | 2017-01-13 | 1 | -2/+8 |
* | In A && B, stop special-casing boolean-ness of A | David Mitchell | 2017-01-06 | 1 | -7/+4 |
* | add xor, grep, flip, flop to boolean cxt detection | David Mitchell | 2017-01-06 | 1 | -1/+15 |
* | reindent block in rpeep() | David Mitchell | 2017-01-06 | 1 | -10/+10 |
* | re-implement boolean context detection | David Mitchell | 2017-01-06 | 1 | -59/+70 |
* | Handle chop(@a =~ tr///) | David Mitchell | 2017-01-02 | 1 | -2/+25 |
* | Convert core (except toke.c) to use isFOO_utf8_safe() | Karl Williamson | 2016-12-23 | 1 | -5/+6 |
* | assertion failure in ... or ((0) x 0)) | David Mitchell | 2016-12-05 | 1 | -2/+2 |
* | add some /* NOTREACHED */ | David Mitchell | 2016-12-05 | 1 | -3/+3 |
* | Clean up warnings uncovered by 'clang -Weverything'. | Andy Lester | 2016-12-05 | 1 | -2/+4 |
* | avoid premature free of referent in list assign | David Mitchell | 2016-11-24 | 1 | -0/+16 |
* | Change white space to avoid C++ deprecation warning | Karl Williamson | 2016-11-18 | 1 | -39/+39 |
* | eliminate OPpRUNTIME private PMOP flag | David Mitchell | 2016-11-14 | 1 | -4/+1 |
* | op.c: clarify documentation for Perl_load_module() | Aaron Crane | 2016-11-12 | 1 | -13/+22 |
* | op.c: silence compiler warning in fold_constants() | Lukas Mai | 2016-10-22 | 1 | -1/+1 |
* | op.c: use new SvPVCLEAR and constant string friendly macros | Yves Orton | 2016-10-19 | 1 | -3/+3 |
* | op.c: Fix EBCDIC-only bug | Karl Williamson | 2016-10-17 | 1 | -2/+3 |
* | (perl #128996) prevent PL_op pointing to freed ops | Tony Cook | 2016-10-17 | 1 | -2/+0 |
* | op.c: fix what looks like typos in comments | Lukas Mai | 2016-10-12 | 1 | -7/+7 |
* | Perl_newASSIGNOP: fix on g++ builds | David Mitchell | 2016-10-04 | 1 | -4/+3 |
* | fix common assign issue on @a = (split(), 1) | David Mitchell | 2016-10-04 | 1 | -8/+25 |
* | Better optimise my/local @a = split() | David Mitchell | 2016-10-04 | 1 | -16/+13 |
* | re-indent block in Perl_newASSIGNOP | David Mitchell | 2016-10-04 | 1 | -76/+76 |
* | make OP_SPLIT a PMOP, and eliminate OP_PUSHRE | David Mitchell | 2016-10-04 | 1 | -89/+124 |
* | OP_SASSIGN: make op_first==op_last for UNOP | David Mitchell | 2016-09-29 | 1 | -5/+3 |
* | sassign was used as UNOP, optimize {or,and,dor}assign | Reini Urban | 2016-09-29 | 1 | -5/+4 |
* | sassign is wrongly declared as BASEOP, not BINOP. | Reini Urban | 2016-09-29 | 1 | -4/+3 |
* | OP_MULTIDEREF: ignore customised delete/exists | David Mitchell | 2016-09-28 | 1 | -0/+7 |
* | make PADOFFSET be SSizet_t | David Mitchell | 2016-09-26 | 1 | -1/+1 |
* | fix builds under USE_PAD_RESET | David Mitchell | 2016-09-26 | 1 | -0/+6 |
* | [perl #129090] Crash with sub c{sub c} | Father Chrysostomos | 2016-09-10 | 1 | -1/+1 |
* | op.c: Avoid string cmp when unnecessary | Father Chrysostomos | 2016-09-10 | 1 | -1/+1 |