# New Ticket Created by Paul Cochrane
# Please include the string: [perl #48130]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48130 >
In languages/dotnet/pmc/dotnetassembly.pmc:make_bytecode_pmc() there is the
todo item (with surrounding code for context):
/* Get code size and local signature location. */
bytecode->body_size = read_word_u(in);
sig_token = read_word_u(in);
if (ass->rows[Table_StandAloneSig] < 2 << 15)
sig_token &= 0xFFFF; /* XXX Why do we have to do this? */
So, this still begs the question: why do we have to do this?