diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-09-17 16:16:41 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-09-17 16:16:41 +0200 |
commit | ab530bb211148d89fc22ec2b2f2defe685f9aba9 (patch) | |
tree | ccb2b16ad0403c75876c0d61d126341bb254ee2c /deps/v8/src/arm/codegen-arm.h | |
parent | 605b7e9763c37f45c499d867f254345b56dfe9f6 (diff) | |
download | node-new-ab530bb211148d89fc22ec2b2f2defe685f9aba9.tar.gz |
Upgrade v8 to 1.3.11
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); |