--- a/hotspot/src/share/vm/opto/graphKit.cpp Tue Aug 30 09:01:33 2016 +0000
+++ b/hotspot/src/share/vm/opto/graphKit.cpp Wed Jul 13 12:10:22 2016 +0200
@@ -2172,10 +2172,9 @@
java_bc() == Bytecodes::_instanceof ||
java_bc() == Bytecodes::_aastore) {
ciProfileData* data = method()->method_data()->bci_to_data(bci());
- bool maybe_null = data == NULL ? true : data->as_BitData()->null_seen();
+ maybe_null = data == NULL ? true : data->as_BitData()->null_seen();
}
return record_profile_for_speculation(n, exact_kls, maybe_null);
- return n;
}
/**