
org.opalj.br.instructions.IMUL.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions
/**
* Multiply int.
*
* @author Michael Eichberg
*/
case object IMUL extends MultiplyInstruction {
final val opcode = 104
final val mnemonic = "imul"
final val computationalType = ComputationalTypeInt
final def stackSlotsChange: Int = -1
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy