Skip to content

Commit b7dbce8

Browse files
author
Michael Haas
committed
Rename.
1 parent a7dab67 commit b7dbce8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Verifies that deoptimization functions correctly when triggered during a method call invoked by
1818
* an {@link InvokeStaticJavaMethodNode}.
1919
*/
20-
public class HotSpotDeoptInBoundJavaMethodTest extends HotSpotInvokeBoundJavaMethodBaseTest {
20+
public class HotSpotDeoptBoundJavaMethodCallerTest extends HotSpotInvokeBoundJavaMethodBaseTest {
2121

2222
/**
2323
* Calling {@link #getForeignCallInvokerMethod()} will deoptimize the calling frame. We will
@@ -34,7 +34,7 @@ protected boolean invocationPluginApply(GraphBuilderContext b, ResolvedJavaMetho
3434

3535
@Override
3636
protected void registerInvocationPlugins(InvocationPlugins invocationPlugins) {
37-
invocationPlugins.register(HotSpotDeoptInBoundJavaMethodTest.class, new InvocationPlugin("testCallInt", int.class) {
37+
invocationPlugins.register(HotSpotDeoptBoundJavaMethodCallerTest.class, new InvocationPlugin("testCallInt", int.class) {
3838

3939
@Override
4040
public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Receiver receiver, ValueNode arg) {
@@ -55,7 +55,7 @@ public static void invokeForeignCall() {
5555
}
5656

5757
public ResolvedJavaMethod getForeignCallInvokerMethod() {
58-
return getResolvedJavaMethod(HotSpotDeoptInBoundJavaMethodTest.class, "invokeForeignCall");
58+
return getResolvedJavaMethod(HotSpotDeoptBoundJavaMethodCallerTest.class, "invokeForeignCall");
5959
}
6060

6161
@Before

0 commit comments

Comments
 (0)