DO NOT REPLY [Bug 26533] New: - bad iinc behavior with large local variable index
| Newsgroups | gmane.comp.jakarta.bcel.devel |
|---|---|
| Message-ID | <[email protected]> |
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26533>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26533
bad iinc behavior with large local variable index
Summary: bad iinc behavior with large local variable index
Product: BCEL
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: Other
Component: Main
AssignedTo: [email protected]
ReportedBy: [email protected]
IINC isn't wide unless the index is > MAX_SHORT or increment is > Byte.MAX_BYTE.
but the jvm spec says that for non-wide iinc, index is an unsigned byte. the
attached patch fixes my problem.