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


imcc/pcc.c^M
cc: Info: imcc/pcc.c, line 379: In this statement, an array is being
accessed o\
utside the bounds specified for the array type. (subscrbounds)^
            regs[2] = arg;^
-----------------

And sure enough, regs has been declared as two-element array:

    SymReg *arg, *sub, *reg, *regs[2];

Assiging to the third elements is bound to be deadly.

Reply via email to