--- old/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/ArithmeticLIRGeneratorTool.java 2019-05-14 01:06:10.812447066 +0200 +++ new/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/ArithmeticLIRGeneratorTool.java 2019-05-14 01:06:10.404444096 +0200 @@ -103,6 +103,11 @@ void emitStore(ValueKind kind, Value address, Value input, LIRFrameState state); @SuppressWarnings("unused") + default Value emitFusedMultiplyAdd(Value a, Value b, Value c) { + throw GraalError.unimplemented("No specialized implementation available"); + } + + @SuppressWarnings("unused") default Value emitMathLog(Value input, boolean base10) { throw GraalError.unimplemented("No specialized implementation available"); }