0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00

hack fix to v8 2.2.23

This commit is contained in:
Ryan Dahl 2010-07-07 20:10:01 +02:00
parent facb904c5d
commit b1901cd5a5

View File

@ -9257,7 +9257,7 @@ void CompareStub::Generate(MacroAssembler* masm) {
// A smi plus a heap object has the low bit set, a heap object plus
// a heap object has the low bit clear.
ASSERT_EQ(0, kSmiTag);
ASSERT_EQ(V8_UINT64_C(1), kSmiTagMask);
//ASSERT_EQ(V8_UINT64_C(1), kSmiTagMask);
__ lea(rcx, Operand(rax, rdx, times_1, 0));
__ testb(rcx, Immediate(kSmiTagMask));
__ j(not_zero, &not_both_objects);