Format | Assembly Format | Description |
---|---|---|
5A | mul |
Multiply values. |
…, value1, value2 → …, result
The mul
instruction multiplies value1 by value2 and pushes the result on the stack. Integral operations silently truncate the upper bits on overflow (see mul.ovf
).
For floating-point types, 0 × infinity = NaN.
The acceptable operand types and their corresponding result data types are encapsulated in Table 2: Binary Numeric Operations.
None.