diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-04-06 06:28:01 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-04-06 08:40:08 -0700 |
commit | 9b029393566c62b805459ea132fb68e5e941a3bd (patch) | |
tree | 63c99a9f943fc75ad029a6dda812afe704445876 /pp.c | |
parent | fd2dbd2b83d1a66966856f304534143330e0ef17 (diff) | |
download | perl-9b029393566c62b805459ea132fb68e5e941a3bd.tar.gz |
[perl #87708] use integer; $tied < $tied
This is just part of #87708.
This fixes < under ‘use integer’ when the same tied scalar is used for
both operands and returns two different values. Before this commit,
get-magic would be called only once and the same value used. In 5.12.x
the operands were swapped.
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2983,7 +2983,7 @@ PP(pp_i_lt) dVAR; dSP; tryAMAGICbin_MG(lt_amg, AMGf_set); { - dPOPTOPiirl_nomg; + dPOPTOPiirl_halfmg; SETs(boolSV(left < right)); RETURN; } |