Skip to content

Commit

Permalink
Remove J9VMInternals.valueHashCode as recognized method
Browse files Browse the repository at this point in the history
The java.lang.J9VMInternals.valueHashCode was included as a recognized
method, but nothing was being done with that recognition.  This change
removes it from the list of recognized methods.

Signed-off-by:  Henry Zongaro <[email protected]>
  • Loading branch information
hzongaro committed Apr 26, 2023
1 parent 7f9d8f2 commit 516a1ed
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion runtime/compiler/codegen/J9RecognizedMethodsEnum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,6 @@

java_lang_J9VMInternals_identityHashCode,
java_lang_J9VMInternals_fastIdentityHashCode,
java_lang_J9VMInternals_valueHashCode,

java_util_GregorianCalendar_computeFields,

Expand Down
1 change: 0 additions & 1 deletion runtime/compiler/env/j9method.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3368,7 +3368,6 @@ void TR_ResolvedJ9Method::construct()
{x(TR::java_lang_J9VMInternals_getSuperclass, "getSuperclass", "(Ljava/lang/Class;)Ljava/lang/Class;")},
{x(TR::java_lang_J9VMInternals_identityHashCode, "identityHashCode", "(Ljava/lang/Object;)I")},
{x(TR::java_lang_J9VMInternals_fastIdentityHashCode, "fastIdentityHashCode", "(Ljava/lang/Object;)I")},
{x(TR::java_lang_J9VMInternals_valueHashCode, "valueHashCode", "(Ljava/lang/Object;)I")},
{x(TR::java_lang_J9VMInternals_primitiveClone, "primitiveClone", "(Ljava/lang/Object;)Ljava/lang/Object;")},
{ TR::unknownMethod}
};
Expand Down

0 comments on commit 516a1ed

Please sign in to comment.