diff options
Diffstat (limited to 'deps/v8/src/arm/codegen-arm.h')
-rw-r--r-- | deps/v8/src/arm/codegen-arm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/v8/src/arm/codegen-arm.h b/deps/v8/src/arm/codegen-arm.h index 70a7b27765..b28e96594f 100644 --- a/deps/v8/src/arm/codegen-arm.h +++ b/deps/v8/src/arm/codegen-arm.h @@ -180,6 +180,10 @@ class CodeGenerator: public AstVisitor { static const int kUnknownIntValue = -1; + // Number of instructions used for the JS return sequence. The constant is + // used by the debugger to patch the JS return sequence. + static const int kJSReturnSequenceLength = 4; + private: // Construction/Destruction CodeGenerator(int buffer_size, Handle<Script> script, bool is_eval); |