|
Duplicate :
|
LateInlineCallGenerator::do_late_inline crashed on uninitialized _call_node
Adding intValue as a late inline and running the following program crashes the VM:
public class Null {
public static void main(String[] args) {
Integer c = new Integer(-1);
for (int i = 0; i < 1000000000; i++) {
test(c);
}
test(null);
}
public static int test(Integer c) {
return c;
}
}
|