| Index: src/full-codegen.h
|
| diff --git a/src/full-codegen.h b/src/full-codegen.h
|
| index 12879ff5a430b38efaaba5abc075dfaedf6c682d..0d64d922d1845c6f3905b626b93284813e332454 100644
|
| --- a/src/full-codegen.h
|
| +++ b/src/full-codegen.h
|
| @@ -139,7 +139,7 @@ class FullCodeGenerator: public AstVisitor {
|
| #error Unsupported target architecture.
|
| #endif
|
|
|
| - static const int kBackEdgeEntrySize = 2 * kIntSize + kOneByteSize;
|
| + static const int kBackEdgeEntrySize = 3 * kIntSize;
|
|
|
| private:
|
| class Breakable;
|
| @@ -651,7 +651,7 @@ class FullCodeGenerator: public AstVisitor {
|
| struct BackEdgeEntry {
|
| BailoutId id;
|
| unsigned pc;
|
| - uint8_t loop_depth;
|
| + uint32_t loop_depth;
|
| };
|
|
|
| struct TypeFeedbackCellEntry {
|
|
|