You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
365 B
10 lines
365 B
Codifies that the verifier should reject type-unsafe
|
|
instructions in dead code after aget on null, but pass
|
|
type-safe dead code.
|
|
|
|
Previously verification stopped after aget on null and
|
|
punted the method to the interpreter in an effort to avoid
|
|
compiler crashes. As broken code appears very uncommon,
|
|
ensure verifier strictness and help the compilers see more
|
|
code.
|