mirror of
https://github.com/openjdk/jdk.git
synced 2026-07-19 07:29:08 +00:00
8355711: Remove incorrect overflow check in RawBytecodeStream::raw_next
Reviewed-by: dlong, matsaave
This commit is contained in:
parent
604225fb0c
commit
f04e556d47
@ -137,9 +137,6 @@ class RawBytecodeStream: public BaseBytecodeStream {
|
||||
&& code != Bytecodes::_lookupswitch, "can't be special bytecode");
|
||||
_is_wide = false;
|
||||
_next_bci += len;
|
||||
if (_next_bci <= _bci) { // Check for integer overflow
|
||||
code = Bytecodes::_illegal;
|
||||
}
|
||||
_raw_code = code;
|
||||
return code;
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user