This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
make PL_ pad vars be of type PADOFFSET
authorDavid Mitchell <davem@iabyn.com>
Mon, 26 Sep 2016 14:56:08 +0000 (15:56 +0100)
committerDavid Mitchell <davem@iabyn.com>
Mon, 26 Sep 2016 15:20:34 +0000 (16:20 +0100)
commitd12be05dd0210a08e077f0cc9586a5a963122547
tree7f69d1975a59995c29376e9b48333520288e9f42
parentd081a35540aca5feaa56d2ce8a0b72b909a2d79e
make PL_ pad vars be of type PADOFFSET

Now that that PADOFFSET is signed, make

    PL_comppad_name_fill
    PL_comppad_name_floor
    PL_padix
    PL_constpadix
    PL_padix_floor
    PL_min_intro_pending
    PL_max_intro_pending

be of type PADOFFSET rather than I32, to match the rest of the pad
interface.

At the same time, change various I32 local vars in pad.c functions to be
PADOFFSET.
intrpvar.h
pad.c