openpower-isa simulator improperly handles fp division by zero, raising ZeroDivisionError instead of following ieee754 and returning inf/nan. ieee754 specifies: nan/0 -> nan 0/0 -> nan +x/+0 -> +inf -x/+0 -> -inf +x/-0 -> -inf -x/-0 -> +inf see https://salsa.debian.org/Kazan-team/simple-soft-float/-/blob/04506f1f0196dbbf5cfede98b72d7d9702c5f156/src/lib.rs#L3086