summaryrefslogtreecommitdiff
path: root/bytecode.h
diff options
context:
space:
mode:
authorSpider Boardman <spider@orb.nashua.nh.us>1999-03-01 12:27:59 -0500
committerJarkko Hietaniemi <jhi@iki.fi>1999-03-02 07:34:21 +0000
commitadd94a5806141380fd09a55c646496326315ee82 (patch)
tree8e3960e90bd0a51d526b4b270a16c38366da57dd /bytecode.h
parent414a664e2b5f79af383cffac00205f7570368407 (diff)
downloadperl-add94a5806141380fd09a55c646496326315ee82.tar.gz
Eliminate (valid) warning in byterun.c
To: perl5-porters@perl.org Message-Id: <199903012227.RAA00181@leggy.zk3.dec.com> p4raw-id: //depot/cfgperl@3049
Diffstat (limited to 'bytecode.h')
-rw-r--r--bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecode.h b/bytecode.h
index fadc28f0b9..8564aed411 100644
--- a/bytecode.h
+++ b/bytecode.h
@@ -64,7 +64,7 @@ typedef IV IV64;
BGET_U32(hi); \
BGET_U32(lo); \
if (sizeof(IV) == 8) \
- arg = (IV) (hi << (sizeof(IV)*4) | lo); \
+ arg = ((IV)hi << (sizeof(IV)*4) | lo); \
else if (((I32)hi == -1 && (I32)lo < 0) \
|| ((I32)hi == 0 && (I32)lo >= 0)) { \
arg = (I32)lo; \