diff options
Diffstat (limited to 'runtime/method_handles.cc')
-rw-r--r-- | runtime/method_handles.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/method_handles.cc b/runtime/method_handles.cc index 570fc48272..86ad32ef9b 100644 --- a/runtime/method_handles.cc +++ b/runtime/method_handles.cc @@ -745,7 +745,7 @@ bool DoInvokePolymorphicMethod(Thread* self, callee_type, self, shadow_frame, - method_handle /* receiver */, + /* receiver= */ method_handle, operands, result); } else { @@ -1103,7 +1103,7 @@ static inline bool MethodHandleInvokeInternal(Thread* self, if (IsInvokeVarHandle(handle_kind)) { return DoVarHandleInvokeTranslation(self, shadow_frame, - /*invokeExact*/ false, + /*invokeExact=*/ false, method_handle, callsite_type, operands, @@ -1155,7 +1155,7 @@ static inline bool MethodHandleInvokeExactInternal( } else if (IsInvokeVarHandle(handle_kind)) { return DoVarHandleInvokeTranslation(self, shadow_frame, - /*invokeExact*/ true, + /*invokeExact=*/ true, method_handle, callsite_type, operands, |