summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2001-10-25 23:48:28 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-25 20:51:44 +0000
commit83bac5ddc544070452b7d9906bf6b76d919e1ccf (patch)
tree8678c3482039d331f9f5ba060c6e188c7e9e9a21 /pp_hot.c
parent7deadc5fc62e7c179bef75c78fd7a80d46bdb805 (diff)
downloadperl-83bac5ddc544070452b7d9906bf6b76d919e1ccf.tar.gz
remove small IVop redundancy
Message-ID: <20011025224827.M66471@plum.flirble.org> p4raw-id: //depot/perl@12657
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 8c04a70a12..ab1e9fbc49 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -294,10 +294,6 @@ PP(pp_eq)
uv = SvUVX(*(SP+1)); /* Do I want TOPp1s() ? */
}
/* we know iv is >= 0 */
- if (uv > (UV) IV_MAX) {
- SETs(&PL_sv_no);
- RETURN;
- }
SETs(boolSV((UV)iv == uv));
RETURN;
}