
org.opalj.br.instructions.RemainderInstruction.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions
/**
* An instruction that calculates the remainder of a value.
*
* @author Michael Eichberg
*/
abstract class RemainderInstruction extends StackBasedBinaryArithmeticInstruction {
final def operator: String = "%"
final def isShiftInstruction: Boolean = false
final def stackSlotsChange: Int = -computationalType.operandSize
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy