Revision: 3216 Author: [email protected] Date: Wed Nov 4 07:24:11 2009 Log: Fix ARM debug build
[email protected] http://code.google.com/p/v8/source/detail?r=3216 Modified: /branches/bleeding_edge/src/arm/fast-codegen-arm.cc ======================================= --- /branches/bleeding_edge/src/arm/fast-codegen-arm.cc Wed Nov 4 06:45:50 2009 +++ /branches/bleeding_edge/src/arm/fast-codegen-arm.cc Wed Nov 4 07:24:11 2009 @@ -142,14 +142,14 @@ __ add(sp, sp, Operand(sp_delta)); __ Jump(lr); - // Check that the size of the code used for returning matches what is - // expected by the debugger. The add instruction above is an addressing - // mode 1 instruction where there are restrictions on which immediate values - // can be encoded in the instruction and which immediate values requires - // use of an additional instruction for moving the immediate to a temporary - // register. - ASSERT_EQ(expected_return_sequence_length, - masm_->InstructionsGeneratedSince(&check_exit_codesize)); + // Check that the size of the code used for returning matches what is + // expected by the debugger. The add instruction above is an addressing + // mode 1 instruction where there are restrictions on which immediate values + // can be encoded in the instruction and which immediate values requires + // use of an additional instruction for moving the immediate to a temporary + // register. + ASSERT_EQ(return_sequence_length, + masm_->InstructionsGeneratedSince(&check_exit_codesize)); } } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
