Skip to content

WITH-FLOAT-TRAPS-ENABLED was incorrectly setting accrued exceptions.

Raymond Toy requested to merge rtoy-issue-14 into master

Fix issue #14 (closed).

WITH-FLOAT-TRAPS-ENABLED was leaving the accrued (and current) exceptions unchanged, but it should have cleared out any values there that matched the exceptions to be enabled. Without this, the next x87 operation would signal an exception if an accrued exception matched an enabled exception. This was the cause of issue #14 (closed). (Note that for x87, the accrued exception is the same as current exception.)

Merge request reports