src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/FoldTest.java
changeset 48861 47f19ff9903c
parent 47216 71c04702a3d5
child 50858 2d3e99a72541
equal deleted inserted replaced
48860:5bce1b7e7800 48861:47f19ff9903c
    77         }
    77         }
    78     }
    78     }
    79 
    79 
    80     @Override
    80     @Override
    81     protected void registerInvocationPlugins(InvocationPlugins invocationPlugins) {
    81     protected void registerInvocationPlugins(InvocationPlugins invocationPlugins) {
    82         InjectionProvider injection = new NodeIntrinsificationProvider(getMetaAccess(), getSnippetReflection(), getProviders().getForeignCalls(), null);
    82         InjectionProvider injection = new NodeIntrinsificationProvider(getMetaAccess(), getSnippetReflection(), getProviders().getForeignCalls(), getProviders().getLowerer(), null);
    83         new PluginFactory_FoldTest().registerPlugins(invocationPlugins, injection);
    83         new PluginFactory_FoldTest().registerPlugins(invocationPlugins, injection);
    84         BytecodeProvider replacementBytecodeProvider = getSystemClassLoaderBytecodeProvider();
    84         BytecodeProvider replacementBytecodeProvider = getSystemClassLoaderBytecodeProvider();
    85         Registration r = new Registration(invocationPlugins, TestMethod.class, replacementBytecodeProvider);
    85         Registration r = new Registration(invocationPlugins, TestMethod.class, replacementBytecodeProvider);
    86         r.registerMethodSubstitution(TestMethodSubstitution.class, "test");
    86         r.registerMethodSubstitution(TestMethodSubstitution.class, "test");
    87         super.registerInvocationPlugins(invocationPlugins);
    87         super.registerInvocationPlugins(invocationPlugins);