Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
marwan-hallaoui committed May 16, 2022
1 parent b6a9cbc commit 3669e12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
5 changes: 0 additions & 5 deletions src/hotspot/share/jvmci/jvmciCompilerToVM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2951,13 +2951,8 @@ JNINativeMethod CompilerToVM::methods[] = {
{CC "registerNativeMethods", CC "(" CLASS ")[J", FN_PTR(registerNativeMethods)},
{CC "isCurrentThreadAttached", CC "()Z", FN_PTR(isCurrentThreadAttached)},
{CC "getCurrentJavaThread", CC "()J", FN_PTR(getCurrentJavaThread)},
<<<<<<< HEAD
{CC "attachCurrentThread", CC "([BZ[J)Z", FN_PTR(attachCurrentThread)},
{CC "detachCurrentThread", CC "(Z)Z", FN_PTR(detachCurrentThread)},
=======
{CC "attachCurrentThread", CC "([BZ)Z", FN_PTR(attachCurrentThread)},
{CC "detachCurrentThread", CC "()V", FN_PTR(detachCurrentThread)},
>>>>>>> jdk-17.0.4+1
{CC "translate", CC "(" OBJECT "Z)J", FN_PTR(translate)},
{CC "unhand", CC "(J)" OBJECT, FN_PTR(unhand)},
{CC "updateHotSpotNmethod", CC "(" HS_NMETHOD ")V", FN_PTR(updateHotSpotNmethod)},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,7 @@ public static String toInternalName(String className) {
result.append("V");
break;
default:
result.append("L")
.append(replacePackageAndHiddenSeparators(base, PACKAGE_SEPARATOR_JAVA, HIDDEN_SEPARATOR_JAVA))
.append(";");
result.append("L").append(replacePackageAndHiddenSeparators(base, PACKAGE_SEPARATOR_JAVA, HIDDEN_SEPARATOR_JAVA)).append(";");
break;
}
return result.toString();
Expand Down

0 comments on commit 3669e12

Please sign in to comment.