Skip to content

Commit a836cc3

Browse files
committed
Fix aarch64 test failure
1 parent 3999a18 commit a836cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/opto/graphKit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2629,7 +2629,7 @@ Node* GraphKit::make_native_call(const TypeFunc* call_type, uint nargs, ciNative
26292629
BufferBlob* invoker = SharedRuntime::make_native_invoker(call_addr,
26302630
nep->shadow_space(),
26312631
arg_regs, ret_regs);
2632-
if (call_addr == NULL) {
2632+
if (invoker == NULL) {
26332633
C->record_failure("native invoker not implemented on this platform");
26342634
return NULL;
26352635
}

0 commit comments

Comments
 (0)