Closed
Bug 703611
Opened 14 years ago
Closed 7 years ago
Math.pow(-Infinity, even int < 0) does not produce the correct value
Categories
(Tamarin Graveyard :: Virtual Machine, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: brbaker, Unassigned)
References
Details
ecma 262 states for Math.pow() [15.8.2.13]:
If x is -Infinity and y<0 and y is not an odd integer, the result is +0.
Tamarin produces a -0 for this case.
Code:
print(Infinity/Math.pow(-Infinity, -2));
Output: -Infinity
Expected: Infinity
Flags: flashplayer-triage+
Flags: flashplayer-qrb?
Flags: flashplayer-bug-
| Reporter | ||
Comment 1•14 years ago
|
||
Float testcase media: as3/Types/Float/pow.as
Comment 2•7 years ago
|
||
Tamarin isn't maintained anymore. WONTFIX remaining bugs.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•