| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index f77ac4bc8ea3664643a20395b970e03ab8a6ece3..94e6a227c9391502cac38233e83865e15c176217 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -2979,8 +2979,9 @@ class FrameArray : public FixedArray {
|
|
|
| // Flags.
|
| static const int kIsWasmFrame = 1 << 0;
|
| - static const int kIsStrict = 1 << 1;
|
| - static const int kForceConstructor = 1 << 2;
|
| + static const int kIsAsmWasmFrame = 1 << 1;
|
| + static const int kIsStrict = 1 << 2;
|
| + static const int kForceConstructor = 1 << 3;
|
|
|
| static Handle<FrameArray> AppendJSFrame(Handle<FrameArray> in,
|
| Handle<Object> receiver,
|
|
|