Closed
Bug 466431
Opened 17 years ago
Closed 17 years ago
Wrong IS_BOTH_DOUBLE in Interpreter.cpp
Categories
(Tamarin Graveyard :: Virtual Machine, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: pepe, Assigned: lhansen)
References
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; hu; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
Build Identifier: tamarin-redux
The following macro is wrong:
#define IS_BOTH_DOUBLE(a,b) ((((a & kDoubleType) | (b ^ kDoubleType)) & 7) == 0)
This would be the correct one:
#define IS_BOTH_DOUBLE(a,b) ((((a ^ kDoubleType) | (b ^ kDoubleType)) & 7) == 0)
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
| Assignee | ||
Updated•17 years ago
|
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
| Assignee | ||
Comment 1•17 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•