mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8009248: [parfait] Null pointer deference in hotspot/src/share/vm/code/compiledIC.cpp
Add guarantee() to set_to_interpreted() Reviewed-by: kvn
This commit is contained in:
parent
c3114a34ee
commit
eaa8ade37a
1 changed files with 1 additions and 1 deletions
|
@ -552,7 +552,7 @@ bool CompiledStaticCall::is_call_to_interpreted() const {
|
|||
|
||||
void CompiledStaticCall::set_to_interpreted(methodHandle callee, address entry) {
|
||||
address stub=find_stub();
|
||||
assert(stub!=NULL, "stub not found");
|
||||
guarantee(stub != NULL, "stub not found");
|
||||
|
||||
if (TraceICs) {
|
||||
ResourceMark rm;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue