src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/ArithmeticLIRGeneratorTool.java
changeset 58299 6df94ce3ab2f
parent 54914 9feb4852536f
equal deleted inserted replaced
58298:0152ad7b38b8 58299:6df94ce3ab2f
   135     @SuppressWarnings("unused")
   135     @SuppressWarnings("unused")
   136     default Value emitMathPow(Value x, Value y) {
   136     default Value emitMathPow(Value x, Value y) {
   137         throw GraalError.unimplemented("No specialized implementation available");
   137         throw GraalError.unimplemented("No specialized implementation available");
   138     }
   138     }
   139 
   139 
   140     @SuppressWarnings("unused")
       
   141     default void emitZeroMemory(Value address, Value length) {
       
   142         throw GraalError.unimplemented("Bulk zeroing is not supported on this platform");
       
   143     }
       
   144 }
   140 }