Closed Bug 466431 Opened 17 years ago Closed 17 years ago

Wrong IS_BOTH_DOUBLE in Interpreter.cpp

Categories

(Tamarin Graveyard :: Virtual Machine, defect)

x86
Windows XP
defect
Not set
normal

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: nobody → lhansen
Blocks: 465737
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Status: RESOLVED → VERIFIED
You need to log in before you can comment on or make changes to this bug.