diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-07-07 20:10:01 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-07-07 20:10:01 +0200 |
commit | b1901cd5a5bd647cec9346f838da36e311d38500 (patch) | |
tree | 97cdbfa65c0b3613d1a1f4410aa572daa6d71d2b /deps/v8/src/x64 | |
parent | facb904c5db23345a693bf3aa02b1497af12fddd (diff) | |
download | node-new-b1901cd5a5bd647cec9346f838da36e311d38500.tar.gz |
hack fix to v8 2.2.23
Diffstat (limited to 'deps/v8/src/x64')
-rw-r--r-- | deps/v8/src/x64/codegen-x64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/x64/codegen-x64.cc b/deps/v8/src/x64/codegen-x64.cc index 7e04c20e2d..716f08bb54 100644 --- a/deps/v8/src/x64/codegen-x64.cc +++ b/deps/v8/src/x64/codegen-x64.cc @@ -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, ¬_both_objects); |