Open
Bug 1006587
Opened 11 years ago
Updated 2 years ago
Add TruncateAfterRemainder mode for MDiv.
Categories
(Core :: JavaScript Engine: JIT, defect, P5)
Core
JavaScript Engine: JIT
Tracking
()
NEW
People
(Reporter: nbp, Unassigned)
References
Details
When divisions operations are given as argument of explicitly truncated floor/ceil/round math function, then we only care about checking the remainder of the division, and no longer the infinity case.
Math.floor(Inf) | 0 == Math.floor(0) | 0
This case also happens for MNop1 which is introduced in Bug 1000605 (attachment 8418084 [details] [diff] [review]), where we can remove the infinity check if the math function is directly truncated.
Updated•8 years ago
|
Priority: -- → P5
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•