Format | Assembly Format | Description |
---|---|---|
58 | add |
Add two values, returning a new value. |
…, value1, value2 → …, result
The add
instruction adds value2 to value1 and pushes the result on the stack. Overflow is not detected for integral operations (but see add.ovf
); floating-point overflow returns +inf
or -inf
.
The acceptable operand types and their corresponding result data type are encapsulated in Table 2: Binary Numeric Operations.
None.