Silence two build warnings on systems where ivsize > ptrsize.
authorEric Brine\" (via RT) <perlbug-followup@perl.org>
Tue, 13 Nov 2012 10:42:47 +0000 (02:42 -0800)
committerKarl Williamson <public@khwilliamson.com>
Tue, 13 Nov 2012 15:15:16 +0000 (08:15 -0700)
commita56015b9dc044df9d25d61522b810c3a5043b5df
tree17a87976117613214fb2fb066d136176217749c0
parentf432c75f5f87003846b8a1bbad5a0ced394cfbf5
Silence two build warnings on systems where ivsize > ptrsize.

# New Ticket Created by  "Eric Brine"
# Please include the string:  [perl #115710]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=115710 >

This is a bug report for perl from ikegami@adaelis.com,
generated with the help of perlbug 1.39 running under perl 5.14.2.

-----------------------------------------------------------------
[Please describe your issue here]

Attached patch silences two build warnings on systems where ivsize >
ptrsize.

They are safe to ignore, a side-effect of a function with a polymorphic
interface.

cv = find_runcv_where(FIND_RUNCV_level_eq, iv,        NULL);
cv = find_runcv_where(FIND_RUNCV_padid_eq, PTR2IV(p), NULL);  // p is a
PADNAMELIST*

[Please do not change anything below this line]
-----------------------------------------------------------------
pad.c
pp_ctl.c