Open
Description
Source: https://webassembly.github.io/spec/core/_download/WebAssembly.pdf
pp48:
idiv_uπ (π1, π2)
β’ If π2 is 0, then the result is undefined.
idiv_sπ (π1, π2)
β’ If π2 is 0, then the result is undefined.
β’ Else if π1 divided by π2 is 2πβ1, then the result is undefined.
irem_uπ (π1, π2)
β’ If π2 is 0, then the result is undefined.
irem_sπ (π1, π2)
β’ If π2 is 0, then the result is undefined.
pp61:
trunc_uπ,π (π§)
(Not a problem since this is floating point only.)
pp62:
trunc_sπ,π (π§)
(Not a problem since this is floating point only.)
(raised by @holiman)